Skip to content

Commit

Permalink
add mongo-express
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenguc committed Dec 8, 2022
1 parent e2e3982 commit e4f2cbb
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
#image: blockcoders/ink-substrate-explorer-api:latest
restart: on-failure
depends_on:
- postgres
- mongo
build:
context: .
# dockerfile: dev.Dockerfile
Expand Down Expand Up @@ -43,3 +43,16 @@ services:
ink-explorer-network:
aliases:
- "mongo"
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
ME_CONFIG_MONGODB_URL: mongodb://root:root@mongo:27017
networks:
ink-explorer-network:
aliases:
- "mongo-express"

0 comments on commit e4f2cbb

Please sign in to comment.