You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
845 B
36 lines
845 B
services: |
|
|
|
mongodb: |
|
image: mongo:latest |
|
container_name: mongodb |
|
ports: |
|
- "27017:27017" |
|
environment: |
|
- MONGO_INITDB_DATABASE=air |
|
- MONGO_INITDB_ROOT_USERNAME=root |
|
- MONGO_INITDB_ROOT_PASSWORD=example |
|
|
|
seed: |
|
container_name: seed |
|
build: . |
|
links: |
|
- mongodb |
|
|
|
mongo-express: |
|
image: mongo-express:latest |
|
depends_on: |
|
- mongodb |
|
restart: unless-stopped |
|
ports: |
|
- "8081:8081" |
|
links: |
|
- mongodb |
|
environment: |
|
- ME_CONFIG_BASICAUTH_USERNAME=root |
|
- ME_CONFIG_BASICAUTH_PASSWORD=example |
|
- ME_CONFIG_MONGODB_ADMINUSERNAME=root |
|
- ME_CONFIG_MONGODB_ADMINPASSWORD=example |
|
- ME_CONFIG_MONGODB_SERVER=mongodb |
|
- ME_CONFIG_MONGODB_PORT=27017 |
|
- ME_CONFIG_MONGODB_ENABLE_ADMIN=true |
|
- ME_CONFIG_OPTIONS_EDITORTHEME=default
|
|
|