21 lines
319 B
YAML
21 lines
319 B
YAML
|
version: '3'
|
||
|
|
||
|
networks:
|
||
|
tiamat:
|
||
|
driver: bridge
|
||
|
|
||
|
services:
|
||
|
tiamat:
|
||
|
container_name: "tiamat"
|
||
|
#image: "tiamat"
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: "Dockerfile"
|
||
|
ports:
|
||
|
- 8080:8080
|
||
|
- 1302:1302
|
||
|
networks:
|
||
|
- tiamat
|
||
|
volumes:
|
||
|
- ./sample-config/:/root/.config/tiamat/
|