-
Notifications
You must be signed in to change notification settings - Fork 18
/
_docker-compose.override.yml
53 lines (53 loc) · 1.59 KB
/
_docker-compose.override.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
version: '3'
services:
container:
ports:
- '6666:8000' # Remote debugging port
environment:
CONTAINER_REPOSITORY_HOSTNAME: container-repository
CONTAINER_REPOSITORY_PORT: 8080
# CONTAINER_DEPLOYMENT_TESTS: 'true'
CONTAINER_JAVA_OPTS: |-
-Xdebug
-Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n
# volumes:
# - <path on host system>:/tmp/opentosca
container-repository:
# Additional winery service to be used during management feature enrichment.
# Use together with lines 7 and 8.
image: opentosca/winery:latest
environment:
WINERY_PORT: 8091
WORKFLOWMODELER_PORT: 8091
TOPOLOGYMODELER_PORT: 8091
WINERY_HOSTNAME: ${PUBLIC_HOSTNAME}
WORKFLOWMODELER_HOSTNAME: ${PUBLIC_HOSTNAME}
TOPOLOGYMODELER_HOSTNAME: ${PUBLIC_HOSTNAME}
CONTAINER_HOSTNAME: ${PUBLIC_HOSTNAME}
ports:
- '8091:8080'
networks:
- opentosca
engine-plan-bpel:
ports:
- '5555:8000' # Remote debugging port
environment:
JAVA_OPTS: -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n
engine-ia-jdk8:
# volumes:
# - <path on host system>:/usr/local/tomcat/webapps
# ports:
# - '1883:1883' # MQTT
winery:
environment:
WINERY_REPOSITORY_URL: https://github.com/OpenTOSCA/tosca-definitions-public
dind:
volumes:
# Enable University of Stuttgart internal DNS settings via corresponding config file
- ./resolv.conf:/etc/resolv.conf
ports:
- '3306:3306'
tops:
image: opentosca/tops:latest
ports:
- 9090:9090