Marko
Marko
RRailway
Created by Marko on 2/11/2024 in #✋|help
Docker deployment custom start command
I am trying to start the Docker image with additional parameters like this: ./packages/cli/bin/app.js daemon --api http://myapp.railway.internal The config file seems to be adding a semicolon at the end of the URL "http://myapp.railway.internal"; which is then invalid JSON format, like below:
"data": {
"mode": "remote",
"host": "http://myapp.railway.internal";,
"data": {
"mode": "remote",
"host": "http://myapp.railway.internal";,
} Is there a way to prevent that or a workaround when using custom start commands? When running the Docker image locally / server / k8s it works as expected.
8 replies