-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
32 lines (31 loc) · 869 Bytes
/
docker-compose.yaml
File metadata and controls
32 lines (31 loc) · 869 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
version: "3.8"
services:
dashwise:
image: andreasmolnardev/dashwise:stable
ports:
- "3016:3000"
restart: unless-stopped
environment:
PB_ADMIN_EMAIL: default@dashwise.local
PB_ADMIN_PASSWORD: DashwiseIsAwesome
NEXT_PUBLIC_PB_URL: http://pocketbase:8090
pocketbase:
image: andreasmolnardev/dashwise-pb:stable
volumes:
- ./pocketbase:/app/pb_data
ports:
- "8092:8090"
restart: unless-stopped
environment:
PB_ADMIN_EMAIL: default@dashwise.local
PB_ADMIN_PASSWORD: DashwiseIsAwesome
jobs:
image: andreasmolnardev/dashwise-jobs:stable
ports:
- "3001:3001"
environment:
PB_URL: http://pocketbase:8090
DASHWISE_URL: http://dashwise:3000
PB_ADMIN_EMAIL: default@dashwise.local
PB_ADMIN_PASSWORD: DashwiseIsAwesome
restart: unless-stopped