mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-07 09:17:49 +08:00
Some checks failed
CodeQL / codeql (push) Has been cancelled
Docker Build / docker-build (push) Has been cancelled
Gateway Conformance / gateway-conformance (push) Has been cancelled
Gateway Conformance / gateway-conformance-libp2p-experiment (push) Has been cancelled
Go Build / go-build (push) Has been cancelled
Go Check / go-check (push) Has been cancelled
Go Lint / go-lint (push) Has been cancelled
Go Test / go-test (push) Has been cancelled
Interop / interop-prep (push) Has been cancelled
Sharness / sharness-test (push) Has been cancelled
Spell Check / spellcheck (push) Has been cancelled
Interop / helia-interop (push) Has been cancelled
Interop / ipfs-webui (push) Has been cancelled
39 lines
630 B
YAML
39 lines
630 B
YAML
data:
|
|
build: ./data
|
|
volumes:
|
|
- /data
|
|
command: sleep 1000000
|
|
|
|
bootstrap:
|
|
build: ./bootstrap
|
|
command: daemon --debug --init
|
|
expose:
|
|
- "4011"
|
|
- "4012/udp"
|
|
environment:
|
|
GOLOG_LOG_LEVEL: debug
|
|
|
|
server:
|
|
build: ./server
|
|
links:
|
|
- bootstrap
|
|
volumes_from:
|
|
- data
|
|
expose:
|
|
- "4021"
|
|
- "4022/udp"
|
|
environment:
|
|
GOLOG_LOG_LEVEL: debug
|
|
|
|
client:
|
|
build: ./client
|
|
links:
|
|
- bootstrap
|
|
volumes_from:
|
|
- data
|
|
expose:
|
|
- "4031"
|
|
- "4032/udp"
|
|
environment:
|
|
GOLOG_LOG_LEVEL: debug
|