-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-utils.yml
41 lines (39 loc) · 1022 Bytes
/
docker-compose-utils.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
version: '3.8'
services:
mongo-poc:
container_name: mongo-poc
image: mongo
restart: always
networks:
- network-poc
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
volumes:
- ./storage/mongo:/data/db
mongo-express-poc:
container_name: mongo-express-poc
image: mongo-express
restart: always
networks:
- network-poc
depends_on:
- mongo-poc
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
ME_CONFIG_MONGODB_URL: mongodb://root:example@mongo-poc:27017/
redis-poc:
container_name: redis-poc
image: redis:latest
ports:
- 6379:6379
networks:
- network-poc
volumes:
src:
networks:
network-poc:
external: true