Kon/docker-compose.yml
toast 5446441775
All checks were successful
Build and push container image / build (push) Successful in 9m55s
Don't pull published image from registry
2024-01-31 15:25:58 +11: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.1-alpine3.19@sha256:17eb369d9330fe7fbdb2f705418c18823d66322584c77c2b43cc0e1851d01de7
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}