Kon/docker-compose.yml
toast bd042781a8
All checks were successful
Build and push container image / build (push) Successful in 10m53s
Use WG_PMS url from TokenService instead
2024-03-27 09:57:00 +11:00

23 lines
616 B
YAML

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:1d74239810c19ed0dbb317acae40974e673865b2d565a0d369e206159d483957
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}