jedoist-client/docker-compose.yaml
2024-06-14 01:59:09 +03:00

20 lines
346 B
YAML

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