Expose the port on glob hosting container

This commit is contained in:
Prathamesh Musale 2023-12-01 11:52:29 +05:30
parent d739a96ac1
commit 59dc568237
2 changed files with 6 additions and 2 deletions

View File

@ -21,6 +21,8 @@ services:
volumes:
- app_globs:/app-globs
- ../config/uniswap-interface/host-uniswap-glob.sh:/app/host-uniswap-glob.sh
ports:
- "3000"
healthcheck:
test: ["CMD", "nc", "-v", "localhost", "3000"]
interval: 20s

View File

@ -40,8 +40,10 @@ Edit `network` in spec file to map container ports to same ports in host
network:
ports:
urbit-fake-ship:
- 8080:80
- 12321:12321
- 8080:80
- 12321:12321
uniswap-glob-host:
- 3000:3000
...
```