discord-lnbits-bot/docker-compose.yml

31 lines
506 B
YAML
Raw Normal View History

2025-05-11 00:01:04 +00:00
services:
bot:
2025-05-14 15:58:19 +00:00
build:
context: .
2025-05-11 00:01:04 +00:00
env_file:
2025-05-14 15:58:19 +00:00
- ./data/secrets/runtime.env
2025-05-11 00:01:04 +00:00
depends_on:
- db
2025-05-14 15:10:17 +00:00
web:
2025-05-14 15:58:19 +00:00
build:
context: .
ports:
- "3000:3000"
2025-05-14 15:10:17 +00:00
env_file:
2025-05-14 15:58:19 +00:00
- ./data/secrets/runtime.env
2025-05-14 15:10:17 +00:00
depends_on:
- db
2025-05-11 00:01:04 +00:00
db:
image: postgres:15-alpine
environment:
2025-05-14 15:58:19 +00:00
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ${DB_PASS:-changeme} # fallback
POSTGRES_DB: lnbitsdb
2025-05-11 00:01:04 +00:00
volumes:
2025-05-14 15:58:19 +00:00
- dbdata:/var/lib/postgresql/data
2025-05-11 00:01:04 +00:00
volumes:
2025-05-14 15:58:19 +00:00
dbdata: