-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
53 lines (48 loc) · 1.18 KB
/
docker-compose.dev.yml
File metadata and controls
53 lines (48 loc) · 1.18 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
###################################
#
# task start-all-local
#
###################################
# docker volume rm $(docker volume ls -q -f "dangling=true")
services:
warg-server:
image: 'ghcr.io/reecepbcups/warg-registry:v0.9.3'
platform: linux/amd64
environment:
WARG_OPERATOR_KEY: ecdsa-p256:I+UlDo0HxyBBFeelhPPWmD+LnklOpqZDkrFP5VduASk=
WARG_NAMESPACE: example
WKG_REGISTRY: http://localhost:5000
WARG_CONTENT_BASE_URL: http://localhost:8090
WARG_LISTEN: 0.0.0.0:8090
WARG_VERBOSE: 1
ports:
- 8090:8090
command: ['--rm']
ipfs:
image: ipfs/kubo:v0.37.0
network_mode: host
ports:
- '4001:4001'
- '4001:4001/udp'
- '8080:8080'
- '5001:5001'
stop_signal: SIGKILL
command: daemon
restart: unless-stopped
ponder-db:
image: postgres:17
environment:
POSTGRES_DB: ponder
POSTGRES_USER: ponder
POSTGRES_PASSWORD: ponder
volumes:
- ponder-db-data:/var/lib/postgresql/data
ports:
- '6432:5432'
healthcheck:
test: ['CMD-SHELL', 'pg_isready -d ponder -U ponder']
interval: 1s
timeout: 3s
retries: 5
volumes:
ponder-db-data: