21 lines
299 B
YAML
21 lines
299 B
YAML
|
version: "2.3"
|
||
|
networks:
|
||
|
nuth:
|
||
|
|
||
|
services:
|
||
|
cms:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: ./Dockerfile
|
||
|
networks:
|
||
|
- nuth
|
||
|
ports:
|
||
|
- 8000:80
|
||
|
db:
|
||
|
image: mysql:latest
|
||
|
networks:
|
||
|
- nuth
|
||
|
ports:
|
||
|
- 13306:3306
|
||
|
environment:
|
||
|
MYSQL_ROOT_PASSWORD: root
|