Compare commits

..

5 Commits

Author SHA1 Message Date
4c57b8f80d chore: upgrade to 0.3.4+v5.1.0
All checks were successful
cc-ci/testme cc-ci: success
2026-06-02 07:23:07 +00:00
290a8ad72d Merge pull request 'chore: upgrade to 0.3.3+v5.1.0' (#19) from upgrade-0.3.3+v5.1.0 into main
Reviewed-on: https://git.coopcloud.tech/coop-cloud/lasuite-docs/pulls/19
2026-05-26 16:29:42 +00:00
148439f7cf chore: upgrade to 0.3.3+v5.1.0 2026-05-25 20:41:17 +01:00
dd90697270 Merge pull request 'bump to 0.3.2+v5.1.0' (#18) from upgrade-0.3.2+v5.1.0 into main
Reviewed-on: https://git.coopcloud.tech/coop-cloud/lasuite-docs/pulls/18
2026-05-18 18:54:53 +00:00
03db64341d bump to 0.3.2+v5.1.0
Wire up the file-upload conversion path that CONVERSION_UPLOAD_ENABLED
exposes:

- Add Y_PROVIDER_API_BASE_URL and Y_PROVIDER_API_KEY_FILE to common-env
  so the backend can call y-provider (used for .md→Yjs).
- Add DOCSPEC_API_URL to common-env and a new docspec service
  (ghcr.io/docspecio/api:3.0.1) for the .docx→BlockNote→Yjs path.

These were missing because they were dormant while
CONVERSION_UPLOAD_ENABLED defaulted to false upstream. Now that the
recipe defaults it to true (0.3.1+v5.1.0), they're required for the
upload endpoint to function.

Upstream reference:
- https://github.com/suitenumerique/docs/blob/v5.1.0/compose.yml (docspec service)
- https://github.com/suitenumerique/docs/blob/v5.1.0/env.d/development/common (DOCSPEC_API_URL, Y_PROVIDER_API_BASE_URL)
- https://github.com/docspecio/api (DocSpec source)
2026-05-18 18:50:55 +00:00

View File

@ -110,7 +110,7 @@ services:
labels:
- "traefik.enable=false"
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
- "coop-cloud.${STACK_NAME}.version=0.3.2+v5.1.0"
- "coop-cloud.${STACK_NAME}.version=0.3.4+v5.1.0"
user: "${DOCKER_USER:-1000}"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080"]
@ -204,12 +204,11 @@ services:
- y_api_key
docspec:
image: ghcr.io/docspecio/api:3.0.1
image: ghcr.io/docspecio/api:3.0.2
networks:
- backend
healthcheck:
# /health is a proper GET endpoint returning 200 "Healthy."
# Use 127.0.0.1: the Elixir app binds IPv4 only, "localhost" resolves to ::1 first and fails.
# Use 127.0.0.1, which is required instead of localhost for this healtcheck because of elixir/busybox bindings
test: ["CMD", "wget", "-q", "-O", "/dev/null", "http://127.0.0.1:4000/health"]
interval: 15s
timeout: 5s
@ -244,7 +243,7 @@ services:
- postgres_p
redis:
image: redis:8.2.6
image: redis:8.8.0
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 15s
@ -284,7 +283,7 @@ services:
- minio_ru
web:
image: nginx:1.30.0
image: nginx:1.31.1
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8083"]
interval: 15s