-
Notifications
You must be signed in to change notification settings - Fork 6
/
docker-compose.yml
54 lines (54 loc) · 1.1 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
version: '3.7'
services:
apache:
build: apache
ports:
- '8040:80'
volumes:
- openmct-dist:/usr/local/apache2/htdocs/openmct
networks:
- docker_openmct_link
extra_hosts:
- "host.docker.internal:host-gateway"
openmct:
build: openmct
volumes:
- openmct-dist:/openmct/site
networks:
- docker_openmct_link
extra_hosts:
- "host.docker.internal:host-gateway"
couchdb:
build: couchdb
expose:
- '5984:5984'
networks:
- docker_openmct_link
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- couchdb-data:/opt/couchdb/data
yamcs:
build: yamcs
expose:
- '8090:8090'
- '10015:10015/udp'
networks:
- docker_openmct_link
extra_hosts:
- "host.docker.internal:host-gateway"
simulator:
build: simulator
networks:
- docker_openmct_link
extra_hosts:
- "host.docker.internal:host-gateway"
depends_on:
- yamcs
volumes:
couchdb-data:
openmct-dist:
networks:
docker_openmct_link:
name: docker_openmct_link
driver: bridge