Shopware and MySQL
version: "3"
services:
shopware:
image: dockware/shopware:latest
container_name: shopware
ports:
- "80:80"
networks:
- web
db:
image: mysql:5.7
container_name: mysql
networks:
- web
environment:
- MYSQL_ROOT_PASSWORD=hidden
- MYSQL_USER=shopuser
- MYSQL_PASSWORD=secret
- MYSQL_DATABASE=shopware
networks:
web:
external: falseLast updated
Was this helpful?