-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsonarqube.dockerapp
More file actions
38 lines (34 loc) · 920 Bytes
/
sonarqube.dockerapp
File metadata and controls
38 lines (34 loc) · 920 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
version: "7.7"
name: sonarqube
description: "Sonarqube Docker Application for Nimbus - based on community image"
namespace: "admpresales"
maintainers:
- name: Jason Hrabi
email: jason.hrabi@microfocus.com
targets:
swarm: false
kubernetes: false
---
# This section contains the Compose file that describes your application services.
version: '3.5'
services:
sonarqube:
image: "${SONARQUBE_IMAGE}:${SONARQUBE_TAG}"
ports:
- "${SONARQUBE_PORT}:9000"
container_name: ${SONARQUBE_CONTAINER_NAME}
hostname: sonarqube.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.
SONARQUBE_IMAGE: sonarqube
SONARQUBE_CONTAINER_NAME: sonarqube
SONARQUBE_TAG: '7.7-community'
SONARQUBE_PORT: 8020