Skip to content

Commit

Permalink
Update Compose Files to Always Pull Latest Data
Browse files Browse the repository at this point in the history
  • Loading branch information
oliv10 committed Jul 21, 2023
1 parent 7d27004 commit 6e385e2
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions compose.yml
Original file line number Diff line number Diff line change
@@ -1,47 +1,55 @@
services:
vulnerability-tests:
image: greenbone/vulnerability-tests:latest
pull_policy: always
environment:
STORAGE_PATH: /var/lib/openvas/22.04/vt-data/nasl
volumes:
- vt_data_vol:/mnt

notus-data:
image: greenbone/notus-data:latest
pull_policy: always
volumes:
- notus_data_vol:/mnt

scap-data:
image: greenbone/scap-data:latest
pull_policy: always
volumes:
- scap_data_vol:/mnt

cert-bund-data:
image: greenbone/cert-bund-data:latest
pull_policy: always
volumes:
- cert_data_vol:/mnt

dfn-cert-data:
image: greenbone/dfn-cert-data:latest
pull_policy: always
volumes:
- cert_data_vol:/mnt
depends_on:
- cert-bund-data

data-objects:
image: greenbone/data-objects:latest
pull_policy: always
volumes:
- data_objects_vol:/mnt

report-formats:
image: greenbone/report-formats:latest
pull_policy: always
volumes:
- data_objects_vol:/mnt
depends_on:
- data-objects

gpg-data:
image: greenbone/gpg-data:latest
pull_policy: always
volumes:
- gpg_data_vol:/mnt

Expand Down Expand Up @@ -163,6 +171,7 @@ services:

gvm-tools:
image: greenbone/gvm-tools:latest
pull_policy: always
volumes:
- gvmd_socket_vol:/run/gvmd
- ospd_openvas_socket_vol:/run/ospd
Expand Down
9 changes: 9 additions & 0 deletions dev-compose.yml
Original file line number Diff line number Diff line change
@@ -1,47 +1,55 @@
services:
vulnerability-tests:
image: greenbone/vulnerability-tests:latest
pull_policy: always
environment:
STORAGE_PATH: /var/lib/openvas/22.04/vt-data/nasl
volumes:
- vt_data_vol:/mnt

notus-data:
image: greenbone/notus-data:latest
pull_policy: always
volumes:
- notus_data_vol:/mnt

scap-data:
image: greenbone/scap-data:latest
pull_policy: always
volumes:
- scap_data_vol:/mnt

cert-bund-data:
image: greenbone/cert-bund-data:latest
pull_policy: always
volumes:
- cert_data_vol:/mnt

dfn-cert-data:
image: greenbone/dfn-cert-data:latest
pull_policy: always
volumes:
- cert_data_vol:/mnt
depends_on:
- cert-bund-data

data-objects:
image: greenbone/data-objects:latest
pull_policy: always
volumes:
- data_objects_vol:/mnt

report-formats:
image: greenbone/report-formats:latest
pull_policy: always
volumes:
- data_objects_vol:/mnt
depends_on:
- data-objects

gpg-data:
image: greenbone/gpg-data:latest
pull_policy: always
volumes:
- gpg_data_vol:/mnt

Expand Down Expand Up @@ -163,6 +171,7 @@ services:

gvm-tools:
image: greenbone/gvm-tools:latest
pull_policy: always
volumes:
- gvmd_socket_vol:/run/gvmd
- ospd_openvas_socket_vol:/run/ospd
Expand Down

0 comments on commit 6e385e2

Please sign in to comment.