-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcompose.yaml
More file actions
31 lines (29 loc) · 636 Bytes
/
compose.yaml
File metadata and controls
31 lines (29 loc) · 636 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
networks:
xpd-network:
external: false
services:
xpd-gateway:
image: ghcr.io/randomairborne/experienced:latest
build:
context: .
dockerfile: ./xpd-gateway/Dockerfile
restart: unless-stopped
networks:
- xpd-network
env_file:
- .env
environment:
DATABASE_URL: "postgres://app:app@postgres:5432/app"
depends_on:
- postgres
postgres:
image: postgres:18
restart: unless-stopped
networks:
- xpd-network
environment:
POSTGRES_USER: app
POSTGRES_DB: app
POSTGRES_PASSWORD: app
volumes:
- ./db-data:/var/lib/postgresql