Thomas Rawyler
Results
3
comments of
Thomas Rawyler
If you override the `entrypoint` in your `docker-compose.yaml` you can pass the `--routes` argument: ```yaml volumes: - ./secrets.json:/data/db.json - ./routes.json:/data/routes.json entrypoint: ["bash", "/run.sh", "--routes /data/routes.json"] ```
I've encountered the same issue when running a kaniko job on a docker based gitlab-runner. But for me it was failing with `privileged = true`. I guess I started to...