jedoist-client/docker-compose.yaml

19 lines
323 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:
- TODO_PATH=/mnt/todo
- TODO_FILE=${TODO_FILE}
volumes:
- ${TODO_PATH}:/mnt/todo
2024-06-14 01:19:23 +03:00
restart: on-failure
networks:
- jedoist