-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmfconnect.dockerapp
More file actions
47 lines (41 loc) · 1009 Bytes
/
mfconnect.dockerapp
File metadata and controls
47 lines (41 loc) · 1009 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
# Metadata
version: "4.3.5"
name: mfconnect
description: "Micro Focus Connect with Start Team Server for Nimbus"
namespace: admpresales
maintainers:
- name: Jason Corlett
email: jason.corlett@microfocus.com
- name: Jason Hrabi
email: jason.hrabi@microfocus.com
targets:
swarm: false
kubernetes: false
---
# Compose
version: "3.5"
services:
mfconnect:
container_name: ${MFCONNECT_CONTAINER_NAME}
image: "${MFCONNECT_IMAGE}:${MFCONNECT_TAG}"
networks:
demo-net:
ports:
- "${MFCONNECT_PORT}:8081"
extra_hosts:
- "nimbusserver.aos.com:172.50.0.1"
- "nimbusserver:172.50.0.1"
environment:
- MFCONNECT_SETUP
- MFCONNECT_PORT
networks:
demo-net:
external: true
---
# Default settings
# Connect Container Setup
MFCONNECT_CONTAINER_NAME: "mfconnect"
MFCONNECT_IMAGE: "admpresales/mfconnect"
MFCONNECT_TAG: "4.3.5"
MFCONNECT_PORT: "8081"
MFCONNECT_SETUP: "yes"