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
6 changes: 4 additions & 2 deletions src/_static/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ services:
MOUNT_PATH: "/mnt/web"
KEEP_ALIVE: 1
healthcheck:
test: ["CMD-SHELL", "test -e /run/gsa/copying.done"]
test: [ "CMD-SHELL", "test -e /run/gsa/copying.done" ]
start_period: 5s
volumes:
- gsa_data_vol:/mnt/web
Expand All @@ -139,7 +139,9 @@ services:
restart_policy:
condition: any
environment:
GSAD_ARGS: "--listen=0.0.0.0 --http-only --api-only -f"
Comment thread
wiegandm marked this conversation as resolved.
GSAD_HTTP_ONLY: "true"
GSAD_API_ONLY: "true"
GSAD_FOREGROUND: "true"
volumes:
- gvmd_socket_vol:/run/gvmd
depends_on:
Expand Down
1 change: 1 addition & 0 deletions src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ and this project adheres to [Calendar Versioning](https://calver.org).
* Update gvmd to 26.10.0
* Use [`restart_policy`](https://docs.docker.com/reference/compose-file/deploy/#restart_policy) for container services
* Use `compose.yaml` instead of `docker-compose.yml` everywhere in the docs
* Use environment variables for the settings of gsad

## 26.2.0 - 2026-02-24

Expand Down
Loading