Kon/docker-compose.yml
Renovate 054362e830
All checks were successful
Build and push container image / build (push) Successful in 10m44s
Pin postgres Docker tag to 49fd8c1 (#68)
Co-authored-by: Renovate <system@toast-server.net>
Co-committed-by: Renovate <system@toast-server.net>
2024-03-19 07:31:25 -04:00

24 lines
631 B
YAML

version: '3.8'
services:
bot:
container_name: kon
#image: 'git.toast-server.net/toast/kon:main'
build: .
env_file:
- .env
restart: unless-stopped
depends_on:
- db
db:
container_name: kon-database
image: postgres:16.2-alpine3.19@sha256:49fd8c13fbd0eb92572df9884ca41882a036beac0f12e520274be85e7e7806e9
restart: unless-stopped
ports:
- 37930:5432/tcp
volumes:
- /var/lib/docker/volumes/kon-database:/var/lib/postgresql/data:rw
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DB}