[Docker-Compose] AUTOWIZARD_JSON usage

yep yep, yep all working now.
as expected, the above error is just because I passed in random stuff.

so, tldr

  • set up a JSON like the example
  • pass it throu base64 ( cat wizzard.json | jq . | base64 -w 0)
  • write it into .env like
AUTOWIZARD_JSON="ewogICAgIkNo...BdCn0="
  • pass the .env var to the zammad-init container ( I used docker-compose.override.yml )
  zammad-init:
    environment:
      AUTOWIZARD_JSON: ${AUTOWIZARD_JSON}
  • start the compose
  • visit https://<URL>/#getting_started/auto_wizard/<token>
    in case of the example the token would be secret_token

just took me 4 days to figure this out
image

3 Likes