Last active
October 14, 2020 09:42
-
-
Save cyberhck/aea79cf0fc70030e8a0addb349a223d3 to your computer and use it in GitHub Desktop.
docker-compose feature.manager.ui
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.0' | |
services: | |
api: | |
image: cyberhck/test.feature.manager | |
ports: | |
- 5001:5001 | |
environment: | |
- DatabaseConfig__Host=api_db | |
- DatabaseConfig__Port=5432 | |
- DatabaseConfig__User=api | |
- DatabaseConfig__Password=secret | |
- DatabaseConfig__Name=api | |
- FeatureManager__Url=http://server:5000 | |
- ASPNETCORE_URLS=http://+:5001 | |
app: | |
image: fossapps/feature.manager.ui:stable | |
ports: | |
- 8889:8889 | |
server: | |
image: fossapps/feature.manager:2.1.0 | |
ports: | |
- 5000:5000 | |
environment: | |
- DatabaseConfig__Host=database | |
- DatabaseConfig__Port=5432 | |
- DatabaseConfig__User=featuremanager | |
- DatabaseConfig__Password=secret | |
- DatabaseConfig__Name=features | |
database: | |
image: postgres:11-alpine | |
environment: | |
- POSTGRES_PASSWORD=secret | |
- POSTGRES_USER=featuremanager | |
- POSTGRES_DB=features | |
api_db: | |
image: postgres:11-alpine | |
environment: | |
- POSTGRES_PASSWORD=secret | |
- POSTGRES_USER=api | |
- POSTGRES_DB=api |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.0' | |
services: | |
app: | |
image: fossapps/feature.manager.ui:stable | |
ports: | |
- 8889:8889 | |
server: | |
image: fossapps/feature.manager:2.1.0 | |
ports: | |
- 5000:5000 | |
environment: | |
- DatabaseConfig__Host=database | |
- DatabaseConfig__Port=5432 | |
- DatabaseConfig__User=featuremanager | |
- DatabaseConfig__Password=secret | |
- DatabaseConfig__Name=features | |
database: | |
image: postgres:11-alpine | |
environment: | |
- POSTGRES_PASSWORD=secret | |
- POSTGRES_USER=featuremanager | |
- POSTGRES_DB=features |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.0' | |
services: | |
app: | |
image: fossapps/feature.manager.ui:aec8 | |
ports: | |
- 8889:8889 | |
server: | |
image: fossapps/feature.manager:2.1.0 | |
ports: | |
- 5000:5000 | |
environment: | |
- DatabaseConfig__Host=database | |
- DatabaseConfig__Port=5432 | |
- DatabaseConfig__User=featuremanager | |
- DatabaseConfig__Password=secret | |
- DatabaseConfig__Name=features | |
database: | |
image: postgres:11-alpine | |
environment: | |
- POSTGRES_PASSWORD=secret | |
- POSTGRES_USER=featuremanager | |
- POSTGRES_DB=features |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment