Rustbot/docker-compose.yml
Renovate 5bca003709 Update postgres:16.2-alpine3.19 Docker digest to 951bfda (#48)
Co-authored-by: Renovate <system@toast-server.net>
Co-committed-by: Renovate <system@toast-server.net>
2024-04-18 19:23:34 -04:00

24 lines
647 B
YAML

version: '3.8'
services:
bot:
container_name: rustbot
#image: 'git.toast-server.net/toast/rustbot:main'
build: .
env_file:
- .env
restart: unless-stopped
depends_on:
- db
db:
container_name: rustbot-database
image: postgres:16.2-alpine3.19@sha256:951bfda460300925caa3949eaa092ba022e9aec191bbea9056a39e2382260b27
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}