-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
77 lines (69 loc) · 1.65 KB
/
docker-compose.yml
File metadata and controls
77 lines (69 loc) · 1.65 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
version: "3.8"
x-common-config: &common-config
networks:
- rabbitmq_go_net
env_file:
- ./.env
services:
app:
build:
context: ./api
ports:
- "3000:3000"
depends_on:
- db
<<: *common-config
db:
image: mongo
restart: always
ports:
- "27017:27017"
volumes:
- ./mongod.conf:/etc/mongod.conf
- ./configs:/configs
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_INITDB_ROOT_USERNAME}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_INITDB_ROOT_PASSWORD}
# command: 'mongosh
# use admin
# db.auth("${DB_USERNAME}", "${DB_PASSWORD}")
# use ${DB_NAME}
# db.createUser({
# user: "${DB_USERNAME}",
# pwd: "${DB_PASSWORD}",
# roles: [{ role: "readWrite", db: "${DB_NAME}" }]
# })
# db.createCollection("User")'
command: /configs/init-mongo.sh
<<: *common-config
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: ${MONGO_INITDB_ROOT_USERNAME}
ME_CONFIG_MONGODB_ADMINPASSWORD: ${MONGO_INITDB_ROOT_PASSWORD}
ME_CONFIG_MONGODB_URL: ${DB_URI}
<<: *common-config
rabbitmq:
image: rabbitmq:3-management-alpine
container_name: "rabbitmq"
volumes:
- ./configs:/configs
ports:
- 5672:5672
- 15672:15672
command: >
sh -c 'chmod 777 -R /configs &&
/configs/init-rabbit.sh'
<<: *common-config
configs:
app_config:
file: ./configs/keys/config.env
mongo_config:
file: ./configs/mongod.conf
networks:
rabbitmq_go_net:
driver: bridge
name: rabbitmq_go_net