kmskrishna
kmskrishna
RRailway
Created by kmskrishna on 8/21/2024 in #✋|help
Memory for unusually high and reduced automatically for MongoDB instance.
No description
13 replies
RRailway
Created by kmskrishna on 1/30/2024 in #✋|help
Will there be GPU support in future?
Attach a GPU to a host kind of thing.
6 replies
RRailway
Created by kmskrishna on 1/26/2024 in #✋|help
Does app sleeping work for databases as well?
Like when it some request is made internally will it wake up? Or it has to be a HTTP request only?
14 replies
RRailway
Created by kmskrishna on 1/26/2024 in #✋|help
How can I change permissions to a volume?
I have to keep 777 for a folder which is the persistent volume. Since volumes are not mounted in build time how can I change the mounted folder permission.
11 replies
RRailway
Created by kmskrishna on 1/24/2024 in #✋|help
Public DB host name is working but private URL is not
Prorject ID: 2a4ccb82-5166-478f-8ad3-5abadca54feb
43 replies
RRailway
Created by kmskrishna on 1/21/2024 in #✋|help
Dockerfile works locally but is crashing on Railway
FROM softwaresecurityproject/zap-stable

ARG API_KEY
ARG PORT

ENV API_KEY=$API_KEY
ENV PORT=$PORT


# Expose the ZAP proxy port
EXPOSE $PORT

# Start ZAP in daemon mode with the specified configuration
CMD zap.sh -daemon -host 0.0.0.0 -port $PORT -config api.addrs.addr.name=.* -config api.addrs.addr.regex=true -config api.key=$API_KEY
FROM softwaresecurityproject/zap-stable

ARG API_KEY
ARG PORT

ENV API_KEY=$API_KEY
ENV PORT=$PORT


# Expose the ZAP proxy port
EXPOSE $PORT

# Start ZAP in daemon mode with the specified configuration
CMD zap.sh -daemon -host 0.0.0.0 -port $PORT -config api.addrs.addr.name=.* -config api.addrs.addr.regex=true -config api.key=$API_KEY
This works when I run locally. When I run online I am getting the following error in stdout. changed url with xxxx:xxxx
ZAP Error [org.apache.hc.core5.http.NoHttpResponseException]: xxxx:xxxx failed to respond
ZAP Error [org.apache.hc.core5.http.NoHttpResponseException]: xxxx:xxxx failed to respond
What seems to be the issue?
28 replies