26 lines
404 B
YAML
26 lines
404 B
YAML
version: "2.3"
|
|
networks:
|
|
nuth:
|
|
|
|
services:
|
|
cms:
|
|
build:
|
|
context: .
|
|
dockerfile: ./cms.Dockerfile
|
|
networks:
|
|
- nuth
|
|
ports:
|
|
- 8000:80
|
|
depends_on:
|
|
- db
|
|
db:
|
|
build:
|
|
context: .
|
|
dockerfile: ./db.Dockerfile
|
|
networks:
|
|
- nuth
|
|
ports:
|
|
- 13306:3306
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: root
|
|
MYSQL_DATABASE: SilverStripe |