28 lines
491 B
YAML
28 lines
491 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
kord:
|
|
build: .
|
|
container_name: kord-bot
|
|
env_file:
|
|
- .env
|
|
depends_on:
|
|
- postgres
|
|
restart: unless-stopped
|
|
|
|
postgres:
|
|
image: postgres:15-alpine
|
|
container_name: kord-postgres
|
|
environment:
|
|
POSTGRES_USER: kord
|
|
POSTGRES_PASSWORD: password
|
|
POSTGRES_DB: kord_db
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
postgres_data:
|