nuth.ch/docker-compose.yml

24 lines
357 B
YAML
Raw Normal View History

version: "2.3"
networks:
nuth:
services:
cms:
build:
context: .
dockerfile: ./Dockerfile
networks:
- nuth
ports:
- 8000:80
2019-04-10 10:41:33 +00:00
depends_on:
- db
db:
image: mysql:5
networks:
- nuth
ports:
- 13306:3306
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: SilverStripe