Dockware Setup (Docker)
Last updated
Was this helpful?
Was this helpful?
version: "3"
services:
shopware:
image: dockware/dev:6.7.1.2
container_name: shopware6712
ports:
- "80:80"
- "3306:3306"
- "22:22"
- "8888:8888"
- "9999:9999"
- "9998:9998"
- "5333-5356:5333-5356"
networks:
- web
volumes:
- "shopware6712_shop_volume:/var/www/html"
- "shopware6712_db_volume:/var/lib/mysql"
networks:
web:
external: false
volumes:
shopware6712_shop_volume:
driver: local
shopware6712_db_volume:
driver: localexport VITE_HOST='0.0.0.0' && export VITE_EXTENSIONS_SERVER_SCHEME='http' && export VITE_EXTENSIONS_SERVER_HOST='localhost' && make watch-admin