Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 29 additions & 11 deletions src/_static/docker-compose-22.4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,46 +5,59 @@ services:
image: registry.community.greenbone.net/community/vulnerability-tests
environment:
FEED_RELEASE: "24.10"
KEEP_ALIVE: 1
volumes:
- vt_data_vol:/mnt

notus-data:
image: registry.community.greenbone.net/community/notus-data
environment:
KEEP_ALIVE: 1
volumes:
- notus_data_vol:/mnt

scap-data:
image: registry.community.greenbone.net/community/scap-data
environment:
KEEP_ALIVE: 1
volumes:
- scap_data_vol:/mnt

cert-bund-data:
image: registry.community.greenbone.net/community/cert-bund-data
environment:
KEEP_ALIVE: 1
volumes:
- cert_data_vol:/mnt

dfn-cert-data:
image: registry.community.greenbone.net/community/dfn-cert-data
environment:
KEEP_ALIVE: 1
volumes:
- cert_data_vol:/mnt
depends_on:
- cert-bund-data
cert-bund-data:
condition: service_healthy

data-objects:
image: registry.community.greenbone.net/community/data-objects
environment:
FEED_RELEASE: "24.10"
KEEP_ALIVE: 1
volumes:
- data_objects_vol:/mnt

report-formats:
image: registry.community.greenbone.net/community/report-formats
environment:
FEED_RELEASE: "24.10"
KEEP_ALIVE: 1
volumes:
- data_objects_vol:/mnt
depends_on:
- data-objects
data-objects:
condition: service_healthy

gpg-data:
image: registry.community.greenbone.net/community/gpg-data
Expand Down Expand Up @@ -81,15 +94,15 @@ services:
pg-gvm:
condition: service_started
scap-data:
condition: service_completed_successfully
condition: service_healthy
cert-bund-data:
condition: service_completed_successfully
condition: service_healthy
dfn-cert-data:
condition: service_completed_successfully
condition: service_healthy
data-objects:
condition: service_completed_successfully
condition: service_healthy
report-formats:
condition: service_completed_successfully
condition: service_healthy

gsa:
image: registry.community.greenbone.net/community/gsa:stable
Expand All @@ -99,7 +112,8 @@ services:
volumes:
- gvmd_socket_vol:/run/gvmd
depends_on:
- gvmd
gvmd:
condition: service_started
# Sets log level of openvas to the set LOG_LEVEL within the env
# and changes log output to /var/log/openvas instead /var/log/gvm
# to reduce likelyhood of unwanted log interferences
Expand Down Expand Up @@ -155,7 +169,9 @@ services:
# - 127.0.0.1:3000:80
depends_on:
vulnerability-tests:
condition: service_completed_successfully
condition: service_healthy
notus-data:
condition: service_healthy
configure-openvas:
condition: service_completed_successfully
gpg-data:
Expand Down Expand Up @@ -199,10 +215,12 @@ services:
condition: service_started
gpg-data:
condition: service_completed_successfully
vulnerability-tests:
condition: service_completed_successfully
configure-openvas:
condition: service_completed_successfully
vulnerability-tests:
condition: service_healthy
notus-data:
condition: service_healthy

gvm-tools:
image: registry.community.greenbone.net/community/gvm-tools
Expand Down
1 change: 1 addition & 0 deletions src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Calendar Versioning](https://calver.org).
* Ensure cargo is up-to-date by running `rustup update stable` for openvasd
* Include info to update the `docker-compose.yml` file before updating the
Docker container
* Keep data containers alive to restart them only if a new image is pulled

## 25.5.0 - 2025-05-30

Expand Down