Rustbot/docker-compose.yml
Renovate f830e38433 Update postgres Docker tag to v17 (#125)
Co-authored-by: Renovate <system@toast-server.net>
Co-committed-by: Renovate <system@toast-server.net>
2024-09-26 22:20:19 -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:17.0-alpine3.20@sha256:5e6ebbcc4a10913f7aa9f838d0debe3b84a6fc5bd37962db4e6d4397fb3c5fcf
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}