Added mongo-express
Signed-off-by: GitHub <noreply@github.com>
This commit is contained in:
parent
7e7ecaf65a
commit
7530b7b27b
@ -21,6 +21,8 @@ services:
|
|||||||
- 8000:8000
|
- 8000:8000
|
||||||
depends_on:
|
depends_on:
|
||||||
- mongo
|
- mongo
|
||||||
|
links:
|
||||||
|
- mongo
|
||||||
environment:
|
environment:
|
||||||
- ASPNETCORE_URLS=http://+:8000
|
- ASPNETCORE_URLS=http://+:8000
|
||||||
- EnableSwagger=true
|
- EnableSwagger=true
|
||||||
@ -36,6 +38,21 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- react-backend
|
- react-backend
|
||||||
|
|
||||||
|
mongo-express:
|
||||||
|
image: mongo-express
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 8081:8081
|
||||||
|
environment:
|
||||||
|
ME_CONFIG_MONGODB_ADMINUSERNAME: root
|
||||||
|
ME_CONFIG_MONGODB_ADMINPASSWORD: example
|
||||||
|
depends_on:
|
||||||
|
- mongo
|
||||||
|
links:
|
||||||
|
- mongo
|
||||||
|
networks:
|
||||||
|
- react-backend
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
react-backend: {}
|
react-backend: {}
|
||||||
react-frontend: {}
|
react-frontend: {}
|
||||||
|
Loading…
Reference in New Issue
Block a user