17 lines
356 B
YAML
17 lines
356 B
YAML
|
services:
|
||
|
meets:
|
||
|
build: .
|
||
|
depends_on:
|
||
|
- postgresql
|
||
|
env_file: meets.env
|
||
|
volumes:
|
||
|
- ./bot_data:/usr/src/app/bot_data
|
||
|
- type: bind
|
||
|
source: ./config.json
|
||
|
target: /usr/src/app/config.json
|
||
|
postgresql:
|
||
|
image: "postgres:15"
|
||
|
env_file: meets.env
|
||
|
volumes:
|
||
|
- ./postgres:/var/lib/postgresql/data
|