2023-12-04 13:09:19 +00:00
|
|
|
version: '3.7'
|
|
|
|
|
|
|
|
services:
|
|
|
|
urbit-fake-ship:
|
|
|
|
restart: unless-stopped
|
|
|
|
image: tloncorp/vere
|
2023-12-05 09:30:03 +00:00
|
|
|
environment:
|
|
|
|
CERC_IPFS_GLOB_HOST_ENDPOINT: ${CERC_IPFS_GLOB_HOST_ENDPOINT:-http://ipfs-glob-host:5001}
|
|
|
|
CERC_IPFS_SERVER_ENDPOINT: ${CERC_IPFS_SERVER_ENDPOINT:-http://ipfs-glob-host:8080}
|
2023-12-04 13:09:19 +00:00
|
|
|
entrypoint: ["bash", "-c", "./run-urbit-ship.sh && ./deploy-uniswap-app.sh && tail -f /dev/null"]
|
|
|
|
volumes:
|
|
|
|
- urbit_data:/urbit
|
|
|
|
- app_builds:/app-builds
|
|
|
|
- app_globs:/app-globs
|
|
|
|
- ../config/urbit/run-urbit-ship.sh:/urbit/run-urbit-ship.sh
|
|
|
|
- ../config/uniswap-interface/deploy-uniswap-app.sh:/urbit/deploy-uniswap-app.sh
|
|
|
|
ports:
|
|
|
|
- "80"
|
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "nc", "-v", "localhost", "80"]
|
|
|
|
interval: 20s
|
|
|
|
timeout: 5s
|
|
|
|
retries: 15
|
|
|
|
start_period: 10s
|
|
|
|
|
2023-12-05 09:30:03 +00:00
|
|
|
ipfs-glob-host:
|
|
|
|
image: ipfs/kubo:master-2023-02-20-714a968
|
|
|
|
volumes:
|
|
|
|
- ipfs-import:/import
|
|
|
|
- ipfs-data:/data/ipfs
|
|
|
|
ports:
|
|
|
|
- "8080"
|
|
|
|
- "5001"
|
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "nc", "-v", "localhost", "5001"]
|
|
|
|
interval: 20s
|
|
|
|
timeout: 5s
|
|
|
|
retries: 15
|
|
|
|
start_period: 10s
|
|
|
|
|
2023-12-04 13:09:19 +00:00
|
|
|
volumes:
|
|
|
|
urbit_data:
|
|
|
|
app_builds:
|
|
|
|
app_globs:
|
2023-12-05 09:30:03 +00:00
|
|
|
ipfs-import:
|
|
|
|
ipfs-data:
|