-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (35 loc) · 912 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (35 loc) · 912 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
38
39
###################################
#
# make start-all-local
#
# docker exec -it wavs bash
#
###################################
# docker volume rm $(docker volume ls -q -f "dangling=true")
services:
warg-server:
image: "ghcr.io/reecepbcups/warg-registry:v0.9.3"
container_name: "warg-server"
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.34.1
container_name: ipfs
network_mode: host
ports:
- "4001:4001"
- "4001:4001/udp"
- "8080:8080"
- "5001:5001"
stop_signal: SIGKILL
command: daemon
restart: unless-stopped