Skip to content

Commit 489e0d5

Browse files
author
blackduck-serv-builder
committed
Release 2025.1.1
1 parent d3332a4 commit 489e0d5

34 files changed

+114
-114
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
This repository contains orchestration files and documentation for deploying Black Duck Docker containers.
44

5-
## Location of Black Duck 2025.1.0 archive:
5+
## Location of Black Duck 2025.1.1 archive:
66

7-
https://github.com/blackducksoftware/hub/archive/v2025.1.0.tar.gz
7+
https://github.com/blackducksoftware/hub/archive/v2025.1.1.tar.gz
88

99
NOTE:
1010

docker-swarm/bin/hub_add_replication_user.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
TIMEOUT=${TIMEOUT:-10}
6-
HUB_POSTGRES_VERSION=${HUB_POSTGRES_VERSION:-15-1.10}
6+
HUB_POSTGRES_VERSION=${HUB_POSTGRES_VERSION:-15-1.11}
77
HUB_DATABASE_IMAGE_NAME=${HUB_DATABASE_IMAGE_NAME:-postgres}
88

99
function fail() {

docker-swarm/bin/hub_create_data_dump.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# 2. The database container has been properly initialized.
66

77
HUB_DATABASE_IMAGE_NAME=${HUB_DATABASE_IMAGE_NAME:-postgres}
8-
HUB_POSTGRES_VERSION=${HUB_POSTGRES_VERSION:-15-1.10}
9-
HUB_VERSION=${HUB_VERSION:-2025.1.0}
8+
HUB_POSTGRES_VERSION=${HUB_POSTGRES_VERSION:-15-1.11}
9+
HUB_VERSION=${HUB_VERSION:-2025.1.1}
1010
OPT_FORCE=
1111
OPT_LIVE_SYSTEM=
1212
OPT_MAX_CPU=${MAX_CPU:-1}

docker-swarm/bin/hub_db_migrate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
set -o errexit
1515

1616
HUB_DATABASE_IMAGE_NAME=${HUB_DATABASE_IMAGE_NAME:-postgres}
17-
HUB_POSTGRES_VERSION=${HUB_POSTGRES_VERSION:-15-1.10}
17+
HUB_POSTGRES_VERSION=${HUB_POSTGRES_VERSION:-15-1.11}
1818
OPT_MAX_CPU=${MAX_CPU:-1}
1919
OPT_NO_DATABASE=${NO_DATABASE:-}
2020
OPT_NO_STORAGE=${NO_STORAGE:-}

docker-swarm/bin/hub_replication_changepassword.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
TIMEOUT=${TIMEOUT:-10}
6-
HUB_POSTGRES_VERSION=${HUB_POSTGRES_VERSION:-15-1.10}
6+
HUB_POSTGRES_VERSION=${HUB_POSTGRES_VERSION:-15-1.11}
77
HUB_DATABASE_IMAGE_NAME=${HUB_DATABASE_IMAGE_NAME:-postgres}
88

99
function fail() {

docker-swarm/bin/hub_reportdb_changepassword.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
TIMEOUT=${TIMEOUT:-10}
6-
HUB_POSTGRES_VERSION=${HUB_POSTGRES_VERSION:-15-1.10}
6+
HUB_POSTGRES_VERSION=${HUB_POSTGRES_VERSION:-15-1.11}
77
HUB_DATABASE_IMAGE_NAME=${HUB_DATABASE_IMAGE_NAME:-postgres}
88

99
function fail() {

docker-swarm/bin/system_check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ set -o noglob
4141

4242
readonly NOW="$(date +"%Y%m%dT%H%M%S%z")"
4343
readonly NOW_ZULU="$(date -u +"%Y%m%dT%H%M%SZ")"
44-
readonly HUB_VERSION="${HUB_VERSION:-2025.1.0}"
44+
readonly HUB_VERSION="${HUB_VERSION:-2025.1.1}"
4545
readonly OUTPUT_FILE="${SYSTEM_CHECK_OUTPUT_FILE:-system_check_${NOW}.txt}"
4646
readonly PROPERTIES_FILE="${SYSTEM_CHECK_PROPERTIES_FILE:-${OUTPUT_FILE%.txt}.properties}"
4747
readonly SUMMARY_FILE="${SYSTEM_CHECK_SUMMARY_FILE:-${OUTPUT_FILE%.txt}_summary.properties}"

docker-swarm/blackduck-config.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ BLACKDUCK_CORS_ALLOW_CREDENTIALS_PROP_NAME=
2424

2525
# Do not change
2626
HUB_PRODUCT_NAME=BLACK_DUCK
27-
HUB_VERSION=2025.1.0
27+
HUB_VERSION=2025.1.1
2828

2929
# Specify any property-specific overrides here
3030
#

docker-swarm/docker-compose.dbmigrate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.6'
22
services:
33
cfssl:
4-
image: blackducksoftware/blackduck-cfssl:1.0.30
4+
image: blackducksoftware/blackduck-cfssl:1.0.31
55
volumes:
66
- cert-volume:/etc/cfssl
77
healthcheck:
@@ -12,7 +12,7 @@ services:
1212
user: 'cfssl:root'
1313

1414
logstash:
15-
image: blackducksoftware/blackduck-logstash:1.0.40
15+
image: blackducksoftware/blackduck-logstash:1.0.41
1616
volumes:
1717
- log-volume:/var/lib/logstash/data
1818
healthcheck:
@@ -23,7 +23,7 @@ services:
2323
user: 'logstash:root'
2424

2525
postgres:
26-
image: blackducksoftware/blackduck-postgres:15-1.10
26+
image: blackducksoftware/blackduck-postgres:15-1.11
2727
volumes:
2828
- postgres96-data-volume:/bitnami/postgresql
2929
- postgres-conf-volume:/opt/bitnami/postgresql/conf

docker-swarm/docker-compose.externaldb.ubi.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ x-long-start-period: &long-start-period
1313
services:
1414
authentication:
1515
user: authentication:root
16-
image: blackducksoftware/blackduck-authentication:2025.1.0_ubi9.4
16+
image: blackducksoftware/blackduck-authentication:2025.1.1_ubi9.4
1717
volumes:
1818
- authentication-volume:/opt/blackduck/hub/hub-authentication/ldap
1919
- {type: tmpfs, target: /opt/blackduck/hub/hub-authentication/security}
@@ -35,7 +35,7 @@ services:
3535
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
3636
webapp:
3737
user: webapp:root
38-
image: blackducksoftware/blackduck-webapp:2025.1.0_ubi9.4
38+
image: blackducksoftware/blackduck-webapp:2025.1.1_ubi9.4
3939
volumes:
4040
- log-volume:/opt/blackduck/hub/logs
4141
- {type: tmpfs, target: /opt/blackduck/hub/hub-webapp/security}
@@ -57,7 +57,7 @@ services:
5757
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
5858
scan:
5959
user: scan:root
60-
image: blackducksoftware/blackduck-scan:2025.1.0_ubi9.4
60+
image: blackducksoftware/blackduck-scan:2025.1.1_ubi9.4
6161
env_file: [blackduck-config.env , hub-postgres.env]
6262
healthcheck:
6363
test: [CMD, /usr/local/bin/docker-healthcheck.sh, 'https://localhost:8443/api/health-checks/liveness',
@@ -78,7 +78,7 @@ services:
7878
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
7979
storage:
8080
user: storage:root
81-
image: blackducksoftware/blackduck-storage:2025.1.0_ubi9.4
81+
image: blackducksoftware/blackduck-storage:2025.1.1_ubi9.4
8282
env_file: [blackduck-config.env , hub-postgres.env]
8383
healthcheck:
8484
test: [CMD, /usr/local/bin/docker-healthcheck.sh, 'https://localhost:8443/api/health-checks/liveness',
@@ -100,7 +100,7 @@ services:
100100
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
101101
jobrunner:
102102
user: jobrunner:root
103-
image: blackducksoftware/blackduck-jobrunner:2025.1.0_ubi9.4
103+
image: blackducksoftware/blackduck-jobrunner:2025.1.1_ubi9.4
104104
env_file: [blackduck-config.env , hub-postgres.env]
105105
healthcheck:
106106
test: [CMD, /usr/local/bin/docker-healthcheck.sh, 'https://localhost:8443/health-checks/liveness',
@@ -124,7 +124,7 @@ services:
124124
mode: replicated
125125
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
126126
cfssl:
127-
image: blackducksoftware/blackduck-cfssl:1.0.30_ubi9.4
127+
image: blackducksoftware/blackduck-cfssl:1.0.31_ubi9.4
128128
volumes: ['cert-volume:/etc/cfssl']
129129
env_file: [blackduck-config.env]
130130
healthcheck:
@@ -137,7 +137,7 @@ services:
137137
mode: replicated
138138
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
139139
logstash:
140-
image: blackducksoftware/blackduck-logstash:1.0.40_ubi9.4
140+
image: blackducksoftware/blackduck-logstash:1.0.41_ubi9.4
141141
volumes: ['log-volume:/var/lib/logstash/data']
142142
env_file: [blackduck-config.env]
143143
healthcheck:
@@ -152,7 +152,7 @@ services:
152152
mode: replicated
153153
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
154154
registration:
155-
image: blackducksoftware/blackduck-registration:2025.1.0_ubi9.4
155+
image: blackducksoftware/blackduck-registration:2025.1.1_ubi9.4
156156
volumes:
157157
- config-volume:/opt/blackduck/hub/hub-registration/config
158158
- {type: tmpfs, target: /opt/blackduck/hub/hub-registration/security}
@@ -173,7 +173,7 @@ services:
173173
mode: replicated
174174
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
175175
webserver:
176-
image: blackducksoftware/blackduck-nginx:2025.1.0_ubi9.4
176+
image: blackducksoftware/blackduck-nginx:2025.1.1_ubi9.4
177177
ports: ['443:8443']
178178
env_file: [hub-webserver.env, blackduck-config.env]
179179
environment:
@@ -192,7 +192,7 @@ services:
192192
restart_policy: {condition: on-failure, delay: 15s, window: 60s}
193193

194194
documentation:
195-
image: blackducksoftware/blackduck-documentation:2025.1.0_ubi9.4
195+
image: blackducksoftware/blackduck-documentation:2025.1.1_ubi9.4
196196
env_file: [blackduck-config.env]
197197
user: documentation:root
198198
environment:
@@ -209,7 +209,7 @@ services:
209209
mode: replicated
210210
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
211211
redis:
212-
image: blackducksoftware/blackduck-redis:2025.1.0_ubi9.4
212+
image: blackducksoftware/blackduck-redis:2025.1.1_ubi9.4
213213
env_file: [blackduck-config.env]
214214
environment:
215215
HUB_JOBRUNNER_HOST: 'tasks.jobrunner.'
@@ -228,7 +228,7 @@ services:
228228
deploy:
229229
restart_policy: {condition: any}
230230
bomengine:
231-
image: blackducksoftware/blackduck-bomengine:2025.1.0_ubi9.4
231+
image: blackducksoftware/blackduck-bomengine:2025.1.1_ubi9.4
232232
env_file: [blackduck-config.env , hub-postgres.env]
233233
environment:
234234
<< : *pg-usage-settings
@@ -249,7 +249,7 @@ services:
249249
mode: replicated
250250
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
251251
matchengine:
252-
image: blackducksoftware/blackduck-matchengine:2025.1.0_ubi9.4
252+
image: blackducksoftware/blackduck-matchengine:2025.1.1_ubi9.4
253253
user: matchengine:root
254254
healthcheck:
255255
test: [ CMD, /usr/local/bin/docker-healthcheck.sh, 'https://localhost:8443/api/health-checks/liveness',
@@ -270,7 +270,7 @@ services:
270270
HUB_JOBRUNNER_HOST: 'tasks.jobrunner.'
271271
SYNOPSYS_CRYPTO_PROFILE: 'SWARM'
272272
rabbitmq:
273-
image: blackducksoftware/rabbitmq:1.2.42_ubi9.4
273+
image: blackducksoftware/rabbitmq:1.2.43_ubi9.4
274274
hostname: rabbitmq
275275
volumes:
276276
- rabbitmq-data-volume:/var/lib/rabbitmq

docker-swarm/docker-compose.externaldb.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ x-long-start-period: &long-start-period
1313
services:
1414
authentication:
1515
user: authentication:root
16-
image: blackducksoftware/blackduck-authentication:2025.1.0
16+
image: blackducksoftware/blackduck-authentication:2025.1.1
1717
volumes:
1818
- authentication-volume:/opt/blackduck/hub/hub-authentication/ldap
1919
- {type: tmpfs, target: /opt/blackduck/hub/hub-authentication/security}
@@ -35,7 +35,7 @@ services:
3535
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
3636
webapp:
3737
user: webapp:root
38-
image: blackducksoftware/blackduck-webapp:2025.1.0
38+
image: blackducksoftware/blackduck-webapp:2025.1.1
3939
volumes:
4040
- log-volume:/opt/blackduck/hub/logs
4141
- {type: tmpfs, target: /opt/blackduck/hub/hub-webapp/security}
@@ -57,7 +57,7 @@ services:
5757
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
5858
scan:
5959
user: scan:root
60-
image: blackducksoftware/blackduck-scan:2025.1.0
60+
image: blackducksoftware/blackduck-scan:2025.1.1
6161
env_file: [blackduck-config.env , hub-postgres.env]
6262
healthcheck:
6363
test: [CMD, /usr/local/bin/docker-healthcheck.sh, 'https://localhost:8443/api/health-checks/liveness',
@@ -78,7 +78,7 @@ services:
7878
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
7979
storage:
8080
user: storage:root
81-
image: blackducksoftware/blackduck-storage:2025.1.0
81+
image: blackducksoftware/blackduck-storage:2025.1.1
8282
env_file: [blackduck-config.env , hub-postgres.env]
8383
healthcheck:
8484
test: [CMD, /usr/local/bin/docker-healthcheck.sh, 'https://localhost:8443/api/health-checks/liveness',
@@ -100,7 +100,7 @@ services:
100100
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
101101
jobrunner:
102102
user: jobrunner:root
103-
image: blackducksoftware/blackduck-jobrunner:2025.1.0
103+
image: blackducksoftware/blackduck-jobrunner:2025.1.1
104104
env_file: [blackduck-config.env , hub-postgres.env]
105105
healthcheck:
106106
test: [CMD, /usr/local/bin/docker-healthcheck.sh, 'https://localhost:8443/health-checks/liveness',
@@ -124,7 +124,7 @@ services:
124124
mode: replicated
125125
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
126126
cfssl:
127-
image: blackducksoftware/blackduck-cfssl:1.0.30
127+
image: blackducksoftware/blackduck-cfssl:1.0.31
128128
volumes: ['cert-volume:/etc/cfssl']
129129
env_file: [blackduck-config.env]
130130
healthcheck:
@@ -137,7 +137,7 @@ services:
137137
mode: replicated
138138
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
139139
logstash:
140-
image: blackducksoftware/blackduck-logstash:1.0.40
140+
image: blackducksoftware/blackduck-logstash:1.0.41
141141
volumes: ['log-volume:/var/lib/logstash/data']
142142
env_file: [blackduck-config.env]
143143
healthcheck:
@@ -152,7 +152,7 @@ services:
152152
mode: replicated
153153
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
154154
registration:
155-
image: blackducksoftware/blackduck-registration:2025.1.0
155+
image: blackducksoftware/blackduck-registration:2025.1.1
156156
volumes:
157157
- config-volume:/opt/blackduck/hub/hub-registration/config
158158
- {type: tmpfs, target: /opt/blackduck/hub/hub-registration/security}
@@ -173,7 +173,7 @@ services:
173173
mode: replicated
174174
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
175175
webserver:
176-
image: blackducksoftware/blackduck-nginx:2025.1.0
176+
image: blackducksoftware/blackduck-nginx:2025.1.1
177177
ports: ['443:8443']
178178
env_file: [hub-webserver.env, blackduck-config.env]
179179
environment:
@@ -192,7 +192,7 @@ services:
192192
restart_policy: {condition: on-failure, delay: 15s, window: 60s}
193193

194194
documentation:
195-
image: blackducksoftware/blackduck-documentation:2025.1.0
195+
image: blackducksoftware/blackduck-documentation:2025.1.1
196196
env_file: [blackduck-config.env]
197197
user: documentation:root
198198
environment:
@@ -209,7 +209,7 @@ services:
209209
mode: replicated
210210
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
211211
redis:
212-
image: blackducksoftware/blackduck-redis:2025.1.0
212+
image: blackducksoftware/blackduck-redis:2025.1.1
213213
env_file: [blackduck-config.env]
214214
environment:
215215
HUB_JOBRUNNER_HOST: 'tasks.jobrunner.'
@@ -228,7 +228,7 @@ services:
228228
deploy:
229229
restart_policy: {condition: any}
230230
bomengine:
231-
image: blackducksoftware/blackduck-bomengine:2025.1.0
231+
image: blackducksoftware/blackduck-bomengine:2025.1.1
232232
env_file: [blackduck-config.env , hub-postgres.env]
233233
environment:
234234
<< : *pg-usage-settings
@@ -249,7 +249,7 @@ services:
249249
mode: replicated
250250
restart_policy: {condition: on-failure, delay: 5s, window: 60s}
251251
matchengine:
252-
image: blackducksoftware/blackduck-matchengine:2025.1.0
252+
image: blackducksoftware/blackduck-matchengine:2025.1.1
253253
user: matchengine:root
254254
healthcheck:
255255
test: [ CMD, /usr/local/bin/docker-healthcheck.sh, 'https://localhost:8443/api/health-checks/liveness',
@@ -270,7 +270,7 @@ services:
270270
HUB_JOBRUNNER_HOST: 'tasks.jobrunner.'
271271
SYNOPSYS_CRYPTO_PROFILE: 'SWARM'
272272
rabbitmq:
273-
image: blackducksoftware/rabbitmq:1.2.42
273+
image: blackducksoftware/rabbitmq:1.2.43
274274
hostname: rabbitmq
275275
volumes:
276276
- rabbitmq-data-volume:/var/lib/rabbitmq

docker-swarm/docker-compose.integration.externaldb.ubi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version: '3.6'
55

66
services:
77
integration:
8-
image: blackducksoftware/blackduck-integration:2025.1.0_ubi9.4
8+
image: blackducksoftware/blackduck-integration:2025.1.1_ubi9.4
99
user: integration:root
1010
env_file: [blackduck-config.env , hub-postgres.env]
1111
healthcheck:

docker-swarm/docker-compose.integration.externaldb.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version: '3.6'
55

66
services:
77
integration:
8-
image: blackducksoftware/blackduck-integration:2025.1.0
8+
image: blackducksoftware/blackduck-integration:2025.1.1
99
user: integration:root
1010
env_file: [blackduck-config.env , hub-postgres.env]
1111
healthcheck:

docker-swarm/docker-compose.integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version: '3.6'
55

66
services:
77
integration:
8-
image: blackducksoftware/blackduck-integration:2025.1.0
8+
image: blackducksoftware/blackduck-integration:2025.1.1
99
user: integration:root
1010
env_file: [blackduck-config.env ]
1111
healthcheck:

0 commit comments

Comments
 (0)