23 lines
426 B
YAML
23 lines
426 B
YAML
version: '3.3'
|
|
|
|
networks:
|
|
jedoist:
|
|
external: true
|
|
|
|
services:
|
|
|
|
bot:
|
|
hostname: jedoist-client
|
|
# 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
|