Advertisement
Guest User

shopware essentials docker-compose

a guest
Jun 8th, 2022
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.75 KB | None | 0 0
  1. version: "3"
  2.  
  3. services:
  4.     shopware:
  5.      # use either tag "latest" or any other version like "6.1.5", ...
  6.       image: dockware/essentials:latest
  7.       container_name: shopware
  8.       ports:
  9.         - "80:80"
  10.          - "3306:3306"
  11.          - "23:22"
  12.          - "8888:8888"
  13.          - "9999:9999"
  14.       volumes:
  15.         - "db_volume:/var/lib/mysql"
  16.          - "shop_volume:/var/www/html"
  17.       networks:
  18.         - web
  19.       environment:
  20.         # default = 0, recommended to be OFF for frontend devs
  21.          - XDEBUG_ENABLED=1
  22.          # default = latest PHP, optional = specific version
  23.          - PHP_VERSION=7.4
  24.  
  25. volumes:
  26.   db_volume:
  27.     driver: local
  28.   shop_volume:
  29.     driver: local
  30.  
  31. networks:
  32.   web:
  33.     external: false
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement