12 lines
192 B
YAML
12 lines
192 B
YAML
|
version: "3"
|
||
|
|
||
|
services:
|
||
|
worklog:
|
||
|
build: ./docker
|
||
|
container_name: worklog
|
||
|
restart: unless-stopped
|
||
|
volumes:
|
||
|
- ./config:/root/.config/worklog
|
||
|
ports:
|
||
|
- 5000:5000
|