mirror of
https://github.com/nx-bat/pet-the-pond.git
synced 2026-09-22 10:29:11 -04:00
23 lines
399 B
YAML
23 lines
399 B
YAML
services:
|
|
bot:
|
|
restart: unless-stopped
|
|
build: .
|
|
env_file: .env
|
|
depends_on:
|
|
- postgres
|
|
|
|
postgres:
|
|
image: postgres:17
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: postgres
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
ports:
|
|
- 5432:5432
|
|
|
|
volumes:
|
|
postgres_data:
|