23 lines
556 B
YAML
23 lines
556 B
YAML
services:
|
|
bot:
|
|
build:
|
|
context: bot
|
|
environment:
|
|
DIALECT: postgresql
|
|
DRIVER: psycopg2
|
|
USER: user
|
|
PASSWORD: password
|
|
DB_NAME: db
|
|
HOST: postgres
|
|
PORT: 5432
|
|
restart: always
|
|
postgres:
|
|
image: postgres:15.1
|
|
restart: always
|
|
volumes:
|
|
- ./postgres_data:/var/lib/postgresql/data/:Z
|
|
environment:
|
|
POSTGRES_USER: user
|
|
POSTGRES_PASSWORD: password
|
|
POSTGRES_DB: db
|