19 lines
323 B
YAML
19 lines
323 B
YAML
version: '3.3'
|
|
|
|
networks:
|
|
jedoist:
|
|
external: true
|
|
|
|
services:
|
|
|
|
bot:
|
|
# build: ./
|
|
image: localhost:5001/jedoist-client:${APP_VERSION}
|
|
environment:
|
|
- TODO_PATH=/mnt/todo
|
|
- TODO_FILE=${TODO_FILE}
|
|
volumes:
|
|
- ${TODO_PATH}:/mnt/todo
|
|
restart: on-failure
|
|
networks:
|
|
- jedoist |