Kon/docker-compose.yml
toast 5a73154fe9
Some checks failed
Build and push container image / build (push) Has been cancelled
Database integration and test command
2024-01-30 23:17:59 +11:00

22 lines
531 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
db:
container_name: kon-database
image: postgres:16.1-alpine3.19
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}