-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdocker-compose.test.yaml
More file actions
37 lines (35 loc) · 948 Bytes
/
docker-compose.test.yaml
File metadata and controls
37 lines (35 loc) · 948 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
35
36
37
services:
dashwise:
build:
context: .
ports:
- "3016:3000"
restart: unless-stopped
env_file: ./.env
pocketbase:
build: ./pocketbase
environment:
PB_ADMIN_EMAIL: default@dashwise.local
PB_ADMIN_PASSWORD: dashwiseIsAwesome
ports:
- "8090:8090"
volumes:
- ./pocketbase/test/pb_data:/app/pb_data
- ./pocketbase/pb_migrations:/app/pb_migrations
restart: unless-stopped
jobs:
image: andreasmolnardev/dashwise-jobs-pre
#build:
# context: ./jobs
ports:
- "3001:3001"
environment:
PB_URL: http://pocketbase:8090
DASHWISE_URL: http://dashwise:3000
SEARCHITEMS_SCHEDULE: "*/10 * * * *"
MONITORING_INDEXER_SCHEDULE: "*/10 * * * *"
MONITORING_RUNNER_SCHEDULE: "*/1 * * * *"
ALLOW_SSL: false
PB_ADMIN_EMAIL: default@dashwise.local
PB_ADMIN_PASSWORD: dashwiseIsAwesome
restart: unless-stopped