forked from serafernandez/soaFinal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (43 loc) · 846 Bytes
/
docker-compose.yml
File metadata and controls
49 lines (43 loc) · 846 Bytes
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
version: '3.2'
services:
mongo:
image: mongo:4.1
volumes:
- ./data:/data/db
ports:
- '27017:27017'
node:
image: 'node:8.12.0'
user: 'node'
working_dir: /home/node/app
volumes:
- .:/home/node/app
command: "npm start"
depends_on:
- mongo
nginx:
command: nginx
build:
context: ./nginx
dockerfile: DockerfileNginx
ports:
- '80:80'
depends_on:
- node
volumes:
- ./public:/code/static
hive:
image: hivemq/hivemq4
ports:
- "8080:8080"
- "1883:1883"
- "8000:8000"
volumes:
- ./hive_config.conf:/opt/hivemq-4.0.0/conf/config.xml
portainer:
image: portainer/portainer
volumes:
- ./portainer_data:/data
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 9000:9000