Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: "3"
- services:
- shopware:
- # use either tag "latest" or any other version like "6.1.5", ...
- image: dockware/essentials:latest
- container_name: shopware
- ports:
- - "80:80"
- - "3306:3306"
- - "23:22"
- - "8888:8888"
- - "9999:9999"
- volumes:
- - "db_volume:/var/lib/mysql"
- - "shop_volume:/var/www/html"
- networks:
- - web
- environment:
- # default = 0, recommended to be OFF for frontend devs
- - XDEBUG_ENABLED=1
- # default = latest PHP, optional = specific version
- - PHP_VERSION=7.4
- volumes:
- db_volume:
- driver: local
- shop_volume:
- driver: local
- networks:
- web:
- external: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement