mirror of
https://github.com/veganhacktivists/arabot.git
synced 2025-05-18 13:54:12 +02:00
25 lines
373 B
YAML
25 lines
373 B
YAML
services:
|
|
postgres:
|
|
image: postgres:14
|
|
container_name: postgres
|
|
restart: always
|
|
ports:
|
|
- 5432:5432
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- postgres:/var/lib/postgresql/data
|
|
|
|
node:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
depends_on:
|
|
- postgres
|
|
env_file:
|
|
- .env
|
|
|
|
volumes:
|
|
postgres:
|
|
name: arabot-db
|