https://github.com/singhhp1069/identity-demo
https://github.com/singhhp1069/identity-demo
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/singhhp1069/identity-demo
- Owner: singhhp1069
- License: agpl-3.0
- Created: 2019-09-12T15:46:18.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-13T09:14:45.000Z (almost 7 years ago)
- Last Synced: 2025-02-09T12:43:03.945Z (over 1 year ago)
- Size: 21.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker Infrastructure
Simple development set up which allows to run all projects from the single entry point.
Folder structure must be the following:
```
|_identity-app
|_identity-faucet
|_ether-fuel-service
```
**Clone the repository in their respective folders**
To run project in dev mode:
```bash
$ cd docker_infrastructure
$ sudo docker-compose up --build
```
identity app listen on :
```
localhost:8080 or {docker_public_ip}:8080
```
identity facuet Service listen on :
```
localhost:4000 or {docker_public_ip}:4000
```
ether fuel Service listen on :
```
localhost:5000 or {docker_public_ip}:5000
```
testrpc listen on :
```
localhost:8545 or {docker_public_ip}:8545
```
IPFS Web UI listen on :
```
localhost:5001/webui or {docker_public_ip}:5001/webui
```
to get the docker network bridge IP
```
docker inspect {container_name} | grep 'IPAddress'
```