-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yaml
More file actions
53 lines (52 loc) · 1.08 KB
/
docker-compose.dev.yaml
File metadata and controls
53 lines (52 loc) · 1.08 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
services:
prud-core:
profiles:
- webdev
- all
- core
build:
context: .
dockerfile: core/Dockerfile
restart: unless-stopped
environment:
- PRUD_ENV=dev
- PRUD_OLDEST_POST_TO_SEND_TS=${OLDEST_POST:-1706811615581}
- PRUD_DEBUG_LOGGING=true
- PRUD_MAIN_LOOP_INTERVAL_S=1
# - PRUD_RECOVER_BACKOFF_INTERVAL_S=3
- PRUD_POST_SYNC_INTERVAL_S=20
# - PRUD_FEED_REENABLE_INTERVAL_S=5
# - PRUD_FEED_DISABLE_BACKOFF_STEP_S=2
- PRUD_ADMIN_USERNAME=test
- PRUD_ADMIN_PW=secure
volumes:
- ./tmpdata:/data
prud-api:
profiles:
- webdev
- all
- api
build:
context: .
dockerfile: web/api/Dockerfile
ports:
- 8801:80
restart: unless-stopped
environment:
- API_ENV=dev
- API_JWT_SECRET=verysecret
volumes:
- ./tmpdata:/data
prud-web:
profiles:
- all
restart: unless-stopped
build:
context: web/prud-web
ports:
- 8802:3000
depends_on:
- prud-api
- prud-core
volumes:
prud_data: