Skip to content

Instantly share code, notes, and snippets.

@YannickFricke
Created December 16, 2019 13:48
Show Gist options
  • Save YannickFricke/e6f28bca0753cf0cba0d207f355ee506 to your computer and use it in GitHub Desktop.
Save YannickFricke/e6f28bca0753cf0cba0d207f355ee506 to your computer and use it in GitHub Desktop.
Shopware 6 docker-compose
version: "2"
services:
shopware:
image: shopware:6.1.0-rc2
build:
dockerfile: ./Dockerfile
context: .
volumes:
- ./:/sw6
ports:
- 8000:8000
links:
- mysql:mysql
mysql:
image: mysql:5
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: shopware
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment