jedoist-client/docker-compose.yaml

21 lines
396 B
YAML
Raw Normal View History

2024-06-06 00:08:10 +03:00
version: '3.3'
2024-06-14 01:19:23 +03:00
networks:
jedoist:
external: true
2024-06-06 00:08:10 +03:00
services:
bot:
# build: ./
image: localhost:5001/jedoist-client:${APP_VERSION}
environment:
2024-06-14 01:59:09 +03:00
- TOKEN=${TOKEN}
2024-06-29 00:08:56 +03:00
- TODOS_PATH=/mnt/todos
- CONFIG_FILE=/mnt/config.json
2024-06-06 00:08:10 +03:00
volumes:
2024-06-29 00:08:56 +03:00
- ${TODOS_PATH}:/mnt/todos
- ${CONFIG_FILE}:/mnt/config.json
2024-06-14 01:19:23 +03:00
restart: on-failure
networks:
- jedoist