microscript-base/docker-compose.yml

28 lines
536 B
YAML
Raw Permalink Normal View History

2022-04-21 22:15:48 +00:00
version: '3.7'
services:
main:
build:
context: .
mongo:
logging:
driver: none
image: mongo
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
mongo-express:
logging:
driver: none
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:example@mongo:27017/