選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 
Daniel e259917e1f wip - it worked but still functinality missing like admin menu and css 2年前
.docker wip - it worked but still functinality missing like admin menu and css 2年前
app wip - it worked but still functinality missing like admin menu and css 2年前
bin checkin 2年前
dev wip - it worked but still functinality missing like admin menu and css 2年前
generated checkin 2年前
lib wip - it worked but still functinality missing like admin menu and css 2年前
logs checkin 2年前
phpserver checkin 2年前
pub checkin 2年前
setup checkin 2年前
var checkin 2年前
vendor checkin 2年前
.gitignore wip - it worked but still functinality missing like admin menu and css 2年前
CHANGELOG.md checkin 2年前
COPYING.txt checkin 2年前
Gruntfile.js.sample checkin 2年前
LICENSE.txt checkin 2年前
LICENSE_AFL.txt checkin 2年前
README Kopie.md checkin 2年前
README.md wip - it worked but still functinality missing like admin menu and css 2年前
SECURITY.md checkin 2年前
auth.json checkin 2年前
auth.json.sample checkin 2年前
composer.json checkin 2年前
composer.lock checkin 2年前
grunt-config.json.sample checkin 2年前
nginx.conf.sample checkin 2年前
package.json.sample checkin 2年前

README.md

magento-test

#Installation:

Some important information

Some helpful docker commands:

Build all containers

  • docker-compose up -d

Remove all containers

  • docker-compose down

Get into container

  • docker exec -it magento-php /bin/bash

  • docker build -t magento-php .

  • docker image rm magento_php

  • docker ps

  • docker ps --all

  • docker container stop $(docker container ls -aq)

  • docker container rm $(docker container ls -aq)

  • docker rmi $(docker images -q)

  • docker stop spt_tbuddy && docker rm spt_tbuddy && docker rmi spt_tb && docker-compose up -d

  • docker stop magento-test && docker rm magento-test && docker rmi spt_tb && docker-compose up -d

Some helpful other commands:

  • Restart Apache within the container
    • Go into docker container docker exec -it magento-php /bin/bash
    • Apache restart sudo /etc/init.d/apache2 reload

Clean restart of Docker instance

  1. Stop the container(s) using the following command: docker-compose down
  2. Delete all containers using the following command: docker rm -f $(docker ps -a -q)
  3. Delete all volumes using the following command: docker volume rm $(docker volume ls -q)
  4. Restart the containers using the following command: docker-compose up -d

INSTALL MAGENTO

  • docker Container starten und in den Container wechseln
  • composer install
  • “bin/magento install” Befehl: php bin/magento setup:install --base-url="http://127.0.0.1
    --db-host="magento-mariadb”
    --db-name="magento”
    --db-user="root”
    --db-password="root”
    --admin-firstname="Admin”
    --admin-lastname="Admin”
    --admin-email="re@spawntree.de”
    --admin-user="admin”
    --admin-password="magento2test”
    --use-rewrites="1”
    --backend-frontname="admin”
    --db-prefix=mage_
    --search-engine=elasticsearch7
    --elasticsearch-host=elasticsearch
    --elasticsearch-port=9200