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.
 
 
 
 
 
 

19 lines
404 B

services:
mongodb:
image: docker.pblr-nyk.pro/mongo:8.2.4
container_name: mongodb-0
ports:
- 27017:27017
volumes:
- ./testenv/mongodb:/data/db
mongoExpress:
image: docker.pblr-nyk.pro/mongo-express
container_name: mongoExpress-0
ports:
- 8081:8081
environment:
- ME_CONFIG_MONGODB_URL=mongodb://mongodb:27017
depends_on:
- mongodb