-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuft-mobile.dockerapp
More file actions
49 lines (46 loc) · 1.39 KB
/
uft-mobile.dockerapp
File metadata and controls
49 lines (46 loc) · 1.39 KB
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
# This section contains your application metadata.
# Version of the application
version: "3.3"
# Name of the application
name: mc
# A short description of the application
description: "Micro Focus UFT Mobile for the Nimbus ADM Demo Platform"
# 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:
uft-mobile:
image: "${UFTMOBILE_IMAGE}:${UFTMOBILE_TAG}"
ports:
- "${UFTMOBILE_EXT_PORT}:${UFTMOBILE_INT_PORT}"
container_name: ${UFTMOBILE_CONTAINER_NAME}
hostname: nimbusserver.aos.com
environment:
- UFTMOBILE_EXT_PORT
- UFTMOBILE_INT_PORT
shm_size: 2G
networks:
demo-net:
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.
UFTMOBILE_CONTAINER_NAME: uft-mobile
UFTMOBILE_TAG: '3.3_di'
UFTMOBILE_EXT_PORT: 8084
UFTMOBILE_INT_PORT: 8080
UFTMOBILE_IMAGE: admpresales/uft-mobile