https://github.com/amodsachintha/vault-proto
https://github.com/amodsachintha/vault-proto
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/amodsachintha/vault-proto
- Owner: amodsachintha
- Created: 2019-01-22T18:14:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T11:21:29.000Z (over 2 years ago)
- Last Synced: 2025-04-03T08:42:28.052Z (about 2 months ago)
- Language: JavaScript
- Size: 292 KB
- Stars: 2
- Watchers: 0
- Forks: 2
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Build Docker Image first
run this command in the directory where the **Dockerfile** is located.
*i.e: vault-proto/Dockerfile*docker build -t vault .
## Then spin up a container from the image
docker run -it --name vault-proto -v ~/github/vault-proto:/vault-proto -p 8080:8080 -p 3000:3000 -p 4001:4001 vault
**Ctrl + C** to stop the container or `docker stop vault-proto`
## to start the containerdocker start -i vault-proto
## use docker-compose to orchestrate multiple containers
install docker-compose, thendocker-compose up