Update and use existing kubo pod for Urbit glob hosting
This commit is contained in:
parent
094c69beb6
commit
02fffe0e83
@ -14,8 +14,8 @@ services:
|
|||||||
CERC_SCRIPT_DEBUG: ${CERC_SCRIPT_DEBUG}
|
CERC_SCRIPT_DEBUG: ${CERC_SCRIPT_DEBUG}
|
||||||
CERC_URBIT_APP: ${CERC_URBIT_APP}
|
CERC_URBIT_APP: ${CERC_URBIT_APP}
|
||||||
CERC_ENABLE_APP_INSTALL: ${CERC_ENABLE_APP_INSTALL:-true}
|
CERC_ENABLE_APP_INSTALL: ${CERC_ENABLE_APP_INSTALL:-true}
|
||||||
CERC_IPFS_GLOB_HOST_ENDPOINT: ${CERC_IPFS_GLOB_HOST_ENDPOINT:-http://ipfs-glob-host:5001}
|
CERC_IPFS_GLOB_HOST_ENDPOINT: ${CERC_IPFS_GLOB_HOST_ENDPOINT:-http://ipfs:5001}
|
||||||
CERC_IPFS_SERVER_ENDPOINT: ${CERC_IPFS_SERVER_ENDPOINT:-http://ipfs-glob-host:8080}
|
CERC_IPFS_SERVER_ENDPOINT: ${CERC_IPFS_SERVER_ENDPOINT:-http://ipfs:8080}
|
||||||
entrypoint: ["bash", "-c", "./run-urbit-ship.sh && ./deploy-app.sh && tail -f /dev/null"]
|
entrypoint: ["bash", "-c", "./run-urbit-ship.sh && ./deploy-app.sh && tail -f /dev/null"]
|
||||||
volumes:
|
volumes:
|
||||||
- urbit_data:/urbit
|
- urbit_data:/urbit
|
||||||
@ -31,24 +31,6 @@ services:
|
|||||||
retries: 15
|
retries: 15
|
||||||
start_period: 10s
|
start_period: 10s
|
||||||
|
|
||||||
# TODO: Refactor this outside
|
|
||||||
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
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
urbit_data:
|
urbit_data:
|
||||||
urbit_app_builds:
|
urbit_app_builds:
|
||||||
ipfs-import:
|
|
||||||
ipfs-data:
|
|
||||||
|
@ -1,13 +1,24 @@
|
|||||||
version: "3.2"
|
version: "3.2"
|
||||||
|
|
||||||
# See: https://docs.ipfs.tech/install/run-ipfs-inside-docker/#set-up
|
# See: https://docs.ipfs.tech/install/run-ipfs-inside-docker/#set-up
|
||||||
services:
|
services:
|
||||||
ipfs:
|
ipfs:
|
||||||
image: ipfs/kubo:master-2023-02-20-714a968
|
image: ipfs/kubo:master-2023-02-20-714a968
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- ./ipfs/import:/import
|
- ipfs-import:/import
|
||||||
- ./ipfs/data:/data/ipfs
|
- ipfs-data:/data/ipfs
|
||||||
ports:
|
ports:
|
||||||
- "0.0.0.0:8080:8080"
|
- "4001"
|
||||||
- "0.0.0.0:4001:4001"
|
- "8080"
|
||||||
- "0.0.0.0:5001:5001"
|
- "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:
|
||||||
|
@ -33,7 +33,7 @@ laconic-so --stack uniswap-urbit-app deploy init --output uniswap-urbit-app-spec
|
|||||||
|
|
||||||
### Ports
|
### Ports
|
||||||
|
|
||||||
Edit `network` in spec file to map container ports to same ports in host
|
Edit `network` in spec file to map container ports to same ports in host:
|
||||||
|
|
||||||
```
|
```
|
||||||
...
|
...
|
||||||
@ -43,12 +43,14 @@ network:
|
|||||||
- '8080:80'
|
- '8080:80'
|
||||||
proxy-server:
|
proxy-server:
|
||||||
- '4000:4000'
|
- '4000:4000'
|
||||||
ipfs-glob-host:
|
ipfs:
|
||||||
- '8081:8080'
|
- '8081:8080'
|
||||||
- '5001:5001'
|
- '5001:5001'
|
||||||
...
|
...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Note: Skip the `ipfs` ports if need to use an externally running IPFS node
|
||||||
|
|
||||||
### Data volumes
|
### Data volumes
|
||||||
|
|
||||||
Container data volumes are bind-mounted to specified paths in the host filesystem.
|
Container data volumes are bind-mounted to specified paths in the host filesystem.
|
||||||
@ -104,11 +106,11 @@ Inside the deployment directory, open the file `config.env` and set the followin
|
|||||||
# IPFS configuration
|
# IPFS configuration
|
||||||
|
|
||||||
# IFPS endpoint to host the glob file on
|
# IFPS endpoint to host the glob file on
|
||||||
# (Default: http://ipfs-glob-host:5001 pointing to in-stack IPFS node)
|
# (Default: http://ipfs:5001 pointing to in-stack IPFS node)
|
||||||
CERC_IPFS_GLOB_HOST_ENDPOINT=
|
CERC_IPFS_GLOB_HOST_ENDPOINT=
|
||||||
|
|
||||||
# IFPS endpoint to fetch the glob file from
|
# IFPS endpoint to fetch the glob file from
|
||||||
# (Default: http://ipfs-glob-host:8080 pointing to in-stack IPFS node)
|
# (Default: http://ipfs:8080 pointing to in-stack IPFS node)
|
||||||
CERC_IPFS_SERVER_ENDPOINT=
|
CERC_IPFS_SERVER_ENDPOINT=
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -11,3 +11,4 @@ pods:
|
|||||||
- uniswap-interface
|
- uniswap-interface
|
||||||
- proxy-server
|
- proxy-server
|
||||||
- fixturenet-urbit
|
- fixturenet-urbit
|
||||||
|
- kubo
|
||||||
|
Loading…
Reference in New Issue
Block a user