mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
20 lines
334 B
YAML
20 lines
334 B
YAML
version: "3.7"
|
|
services:
|
|
database:
|
|
image: postgres
|
|
restart: always
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "127.0.0.1:55432:5432"
|
|
volumes:
|
|
- data:/var/lib/postgresql/data
|
|
nourybot:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
env_file: .env
|
|
depends_on:
|
|
- database
|
|
volumes:
|
|
data: |