Renovate
0c473ad12b
Co-authored-by: Renovate <system@toast-server.net> Co-committed-by: Renovate <system@toast-server.net>
24 lines
647 B
YAML
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.4-alpine3.19@sha256:664c86747c1a9a34af2699184323ec146aa1ec83062de615f81326a161fc8208
|
|
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}
|