jedoist-client/docker-compose.yaml
2024-06-29 00:08:56 +03:00

21 lines
396 B
YAML

version: '3.3'
networks:
jedoist:
external: true
services:
bot:
# build: ./
image: localhost:5001/jedoist-client:${APP_VERSION}
environment:
- TOKEN=${TOKEN}
- TODOS_PATH=/mnt/todos
- CONFIG_FILE=/mnt/config.json
volumes:
- ${TODOS_PATH}:/mnt/todos
- ${CONFIG_FILE}:/mnt/config.json
restart: on-failure
networks:
- jedoist