Rustbot/docker-compose.yml

24 lines
647 B
YAML
Raw Normal View History

2023-12-08 05:19:17 -05:00
version: '3.8'
services:
bot:
container_name: rustbot
#image: 'git.toast-server.net/toast/rustbot:main'
2023-12-08 05:19:17 -05:00
build: .
env_file:
- .env
restart: unless-stopped
depends_on:
- db
db:
container_name: rustbot-database
image: postgres:16.3-alpine3.19@sha256:fd9074ac8f323a7c54decb3cb0c7febc4c13d39a91456e2f702dfa66d03fa14d
restart: unless-stopped
ports:
- 37931:5432/tcp
volumes:
- /var/lib/docker/volumes/rustbot-database:/var/lib/postgresql/data:rw
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DB}