-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
34 lines (29 loc) · 772 Bytes
/
compose.yml
File metadata and controls
34 lines (29 loc) · 772 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
32
33
34
version: '3.1'
services:
db:
image: postgres
restart: always
ports:
- "5788:5432"
environment:
POSTGRES_USER: user
POSTGRES_PASSWORD: password
POSTGRES_DB: keyline
keyline-api:
image: ghcr.io/the127/keyline:dev-618
platform: linux/amd64
container_name: keyline-api
ports: ["8081:8081"]
command: ["/app/api", "--config", "/app/config.yaml"]
volumes:
- ./keyline-config.yaml:/app/config.yaml:Z
restart: unless-stopped
keyline-ui:
image: ghcr.io/the127/keyline-ui:v0.2.0
platform: linux/amd64
container_name: keyline-ui
ports: ["5177:80"]
environment:
KEYLINE_API_URL: "http://localhost:8081"
KEYLINE_HOST: "http://localhost:5177"
restart: unless-stopped