-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpgadmin.dockerapp
More file actions
48 lines (46 loc) · 1.33 KB
/
pgadmin.dockerapp
File metadata and controls
48 lines (46 loc) · 1.33 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
# This section contains your application metadata.
# Version of the application
version: "4.18"
# Name of the application
name: pgadmin
# A short description of the application
description: "pgAdmin 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.7'
services:
pgadmin:
image: "${PGADMIN_IMAGE}:${PGADMIN_TAG}"
ports:
- "${PGADMIN_PORT}:80"
environment:
- PGADMIN_DEFAULT_EMAIL
- PGADMIN_DEFAULT_PASSWORD
container_name: ${PGADMIN_CONTAINER_NAME}
hostname: pgadmin.aos.com
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.
PGADMIN_IMAGE: dpage/pgadmin4
PGADMIN_CONTAINER_NAME: pgadmin
PGADMIN_TAG: '4.18'
PGADMIN_PORT: 8098
PGADMIN_DEFAULT_EMAIL: admin@aos.com
PGADMIN_DEFAULT_PASSWORD: Password1