Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maliaga-pantoja/calcedonia
springcloud config server
https://github.com/maliaga-pantoja/calcedonia
Last synced: 4 days ago
JSON representation
springcloud config server
- Host: GitHub
- URL: https://github.com/maliaga-pantoja/calcedonia
- Owner: maliaga-pantoja
- License: apache-2.0
- Created: 2019-03-14T18:06:50.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-31T23:06:44.000Z (almost 6 years ago)
- Last Synced: 2024-11-10T12:39:42.485Z (2 months ago)
- Language: Java
- Size: 57.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Project
config server basic template
## Include:
1. In resources exists 2 files: application & bootstrap that contains configuration like git repo uri and secret
2. Inside pom.xml was added spring security
3. Ensure java security encryption is intalled
## How to run
### standalone
```
docker build -t wyracocha/config-server:v1.0.0 . \
docker run --name config-server -p 8080:8888 -d -e REPO_URI=https://github.com/miguelAliaga/encuestas-config-data wyracocha/config-server:v1.0.0
```
### using compose
```
REPO_URI=https://github.com/miguelAliaga/encuestas-config-data.git docker-compose up -d
```### using swarm
```
docker service create --name=calcedonia --replicas=2 -d -e REPO_URI=https://github.com/miguelAliaga/encuestas-config-data -p 8080:8888 wyracocha/calcedonia:v1.4.0
```