Skip to content

Commit

Permalink
Install a mongo database explore tool in a container #144
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Ionescu committed Jan 6, 2024
1 parent fbb7024 commit 2d816ce
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,19 @@ services:
interval: 10s
start_period: 30s


# admin credentials are admin:pass, change them
mongo-express:
image: mongo-express:latest
container_name: mongo-express
environment:
ME_CONFIG_MONGODB_SERVER: mongo
ports:
- "8081:8081"
depends_on:
- mongo


# Redis server, used here for caching
# uses healthcheck with redis-cli ping
redis:
Expand Down Expand Up @@ -80,6 +93,7 @@ services:
- web-random
- web-users


# Section for our containers

# base image for building our python apps, used for speeding up the build process
Expand Down

0 comments on commit 2d816ce

Please sign in to comment.