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.4-alpine3.20@sha256:f9ea7b4dc60590993efbf5191803e97e77cec7e076ab3ac37815de500bc52bde 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}