Rustbot/docker-compose.yml
Renovate c1c9db7665 Update postgres:16.3-alpine3.19 Docker digest to f18f3c5 (#64)
Co-authored-by: Renovate <system@toast-server.net>
Co-committed-by: Renovate <system@toast-server.net>
2024-06-04 19:40:31 -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.3-alpine3.19@sha256:f18f3c509f481e4ddf167c108d11ecb07faca78b5e2204a702a379dee1d84f86
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}