forked from cerc-io/stack-orchestrator
f9eb5a4ba8
* Refactor to make Urbit app deployment script generic * Rename urbit pod and update instructions * Add a flag to allow skipping app installation on Urbit * Make remote Urbit app deployment scripts generic * Move remote deployment scripts to urbit fixturenet * Update and use existing kubo pod for Urbit glob hosting
25 lines
497 B
YAML
25 lines
497 B
YAML
version: "3.2"
|
|
|
|
# See: https://docs.ipfs.tech/install/run-ipfs-inside-docker/#set-up
|
|
services:
|
|
ipfs:
|
|
image: ipfs/kubo:master-2023-02-20-714a968
|
|
restart: always
|
|
volumes:
|
|
- ipfs-import:/import
|
|
- ipfs-data:/data/ipfs
|
|
ports:
|
|
- "4001"
|
|
- "8080"
|
|
- "0.0.0.0:5001:5001"
|
|
healthcheck:
|
|
test: ["CMD", "nc", "-v", "localhost", "5001"]
|
|
interval: 20s
|
|
timeout: 5s
|
|
retries: 15
|
|
start_period: 10s
|
|
|
|
volumes:
|
|
ipfs-import:
|
|
ipfs-data:
|