-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathppm-octane.dockerapp
77 lines (74 loc) · 2.12 KB
/
ppm-octane.dockerapp
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
# This section contains your application metadata.
# Version of the application
version: 10.0.1-16.0.300.70
# Name of the application
name: ppm-octane
# A short description of the application
description: "PPM and ALM Octane Pre-Integrated for Nimbus"
# Namespace to use when pushing to a registry. This is typically your Hub username.
namespace: "admpresales"
# List of application maitainers with name and email for each
maintainers:
- name: Jason Hrabi
email: jason.hrabi@microfocus.com
# Specify false here if your application doesn't support Swarm or Kubernetes
targets:
swarm: false
kubernetes: false
---
# This section contains the Compose file that describes your application services.
version: '3.5'
services:
octane:
image: ${OCTANE_IMAGE}:${OCTANE_TAG}
ports:
- "${SYNCHRONIZER_AGENT_PORT}:1099"
- "${OCTANE_PORT}:8080"
- "${INTEGRATION_BRIDGE_PORT}:9081"
- "${SYNCHRONIZER_PORT}:9082"
container_name: ${OCTANE_CONTAINER_NAME}
environment:
- OCTANE_HOST
hostname: octane.aos.com
shm_size: ${OCTANE_SHM_SIZE}
networks:
demo-net:
extra_hosts:
- "nimbusserver.aos.com:172.50.0.1"
- "nimbusserver:172.50.0.1"
ppm:
image: ${PPM_IMAGE}:${PPM_TAG}
ports:
- "${PPM_PORT}:8080"
- "${PPM_DB_PORT}:1099"
- "${PPM_LAUNCH_PAGE_PORT}:80"
container_name: ${PPM_CONTAINER_NAME}
hostname: ppm.aos.com
shm_size: ${PPM_SHM_SIZE}
networks:
demo-net:
ipv4_address: 172.50.10.20
extra_hosts:
- "nimbusserver.aos.com:172.50.0.1"
- "nimbusserver:172.50.0.1"
networks:
demo-net:
external: true
---
# This section contains the default values for your application settings.
OCTANE_IMAGE: admpresales/octane
OCTANE_TAG: 16.0.300.70_di-ppm10.0.1_di
OCTANE_HOST: nimbusserver.aos.com
OCTANE_CONTAINER_NAME: octane-ppm
INTEGRATION_BRIDGE_PORT: 9081
OCTANE_PORT: 8085
SYNCHRONIZER_AGENT_PORT: 1099
SYNCHRONIZER_PORT: 9082
OCTANE_SHM_SIZE: 2G
PPM_CONTAINER_NAME: ppm-octane
PPM_IMAGE: admpresales/ppm
PPM_TAG: 10.0.1_di-octane16.0.300.70_di
PPM_PORT: 8087
PPM_SHM_SIZE: 2G
PPM_DB_PORT: 1098
PPM_LAUNCH_PAGE_PORT: 8088