-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
61 lines (57 loc) · 1.32 KB
/
docker-compose.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
version: '3.8'
services:
rabbitmq-microservice:
image: rabbitmq:3.9.10
restart: always
ports:
- 5672:5672
- 15672:15672
southconf:
build:
context: .
dockerfile: Southconf/Dockerfile
restart: always
stdin_open: true
volumes:
- ./Southconf:/southconf
depends_on:
- netopeer
- rabbitmq-microservice
tty: true
environment:
AMQP_URL: 'amqp://rabbitmq-microservice?connection_attempts=10&retry_delay=10'
netopeer:
build:
context: .
dockerfile: Netopeer/Dockerfile
restart: always
stdin_open: true
#network_mode: host
ports:
- 830:830
ssh-server:
build:
context: .
dockerfile: sshServer/Dockerfile
volumes:
- ./sshServer:/sshserver
restart: always
stdin_open: true
tty: true
network_mode: host
ports:
- "22:22"
camaraclient:
build:
context: .
dockerfile: CamaraClient/Dockerfile
volumes:
- ./CamaraClient:/camaraclient
restart: always
stdin_open: true
tty: true
#network_mode: host
depends_on:
- rabbitmq-microservice
environment:
AMQP_URL: 'amqp://rabbitmq-microservice?connection_attempts=10&retry_delay=10'