dabo/docker-compose.yml

27 lines
663 B
YAML
Raw Normal View History

2023-04-28 17:09:15 +02:00
version: '3.6'
services:
2023-04-28 20:04:46 +02:00
dabo-bot:
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
user: 10000:10000
2023-04-28 20:04:46 +02:00
volumes:
2023-05-02 10:49:04 +02:00
- ./dabo:/dabo:ro
2023-05-09 17:04:02 +02:00
- ./strategies:/dabo/strategies:ro
- ./dabo-bot.conf:/dabo/dabo-bot.override.conf
2023-05-02 10:49:04 +02:00
- ./data:/dabo/htdocs:rw
- ./home:/dabo/home:rw
- /usr/local/bin/notify.sh:/usr/local/bin/notify.sh:ro
2023-10-02 10:12:19 +02:00
- /usr/local/etc/notify.conf:/usr/local/etc/notify.conf:ro
2023-05-02 10:49:04 +02:00
- /etc/localtime:/etc/localtime:ro
2023-04-28 20:04:46 +02:00
2023-05-02 10:49:04 +02:00
dabo-web:
2023-04-28 17:09:15 +02:00
image: nginx:latest
restart: unless-stopped
volumes:
2023-05-02 10:53:48 +02:00
- ./data:/usr/share/nginx/html:ro
2023-04-28 17:09:15 +02:00
- /etc/localtime:/etc/localtime:ro