Anthony 🦅
Anthony 🦅
RRailway
Created by Anthony 🦅 on 11/28/2023 in #✋|help
Project is not loading
No description
29 replies
RRailway
Created by Anthony 🦅 on 10/24/2023 in #✋|help
Is it possible to change the docker run command?
I need to add --cap-add=NET_ADMIN to my run command to make my docker work, is it possible on railway?
14 replies
RRailway
Created by Anthony 🦅 on 10/16/2023 in #✋|help
Avoid cache in docker build
Is it possible to avoid using cache in docker build ?
10 replies
RRailway
Created by Anthony 🦅 on 9/24/2023 in #✋|help
TEAM Plan free usage
Hi, Is there a certain amount of $ of usage offered in the TEAM plan just like the 5$ of the hobby one? Thanks
6 replies
RRailway
Created by Anthony 🦅 on 7/17/2023 in #✋|help
Env variables 64 limit ?
Is it me or railway doesn't support more than 64 env vars ? I have an issue when it comes to adding more.
7 replies
RRailway
Created by Anthony 🦅 on 6/27/2023 in #✋|help
Is railway slow to respond to requests ?
I've made a migration of an app from Heroku to Railway. It uses websockets and I feel like it takes way more time to get answers on my app since I'm on railway. I am on developer plan. Is that possible ? Is someone having the same issue ?
11 replies
RRailway
Created by Anthony 🦅 on 5/31/2023 in #✋|help
Datadog agent + app stages in same dockerfile
Hi ! Following @Rafal 's suggestion in thread #Recommended way of connecting datadog-agent I tried running a datadog agent and an app in the same Dockerfile (two stages since we have FROM datadog/agent:7 for the agent and FROM node:16.6.1-alpine3.14 for the app). Locally it works perfectly fine, both stages are working. But on railway, only the second one is ran : the app one. The datadog agent stage is discarded, any idea why ? Here is the dockerfile :
FROM datadog/agent:7

ENV DD_APM_ENABLED=true
ENV NON_LOCAL_TRAFFIC=true
ENV DD_APM_NON_LOCAL_TRAFFIC=true
ENV DD_DOGSTATSD_NON_LOCAL_TRAFFIC=true
ENV DD_HOSTNAME=test
ENV DD_TRACE_STARTUP_LOGS=true
ENV DD_SITE=datadoghq.eu

ARG DD_API_KEY
ENV DD_API_KEY=$DD_API_KEY

FROM node:16.6.1-alpine3.14

# Copy your application files to the Docker container
COPY . /app
WORKDIR /app

# Install your application's dependencies
RUN npm install

# Set the Docker container to run your application when it starts
CMD ["node", "index.js"]

EXPOSE 3000
FROM datadog/agent:7

ENV DD_APM_ENABLED=true
ENV NON_LOCAL_TRAFFIC=true
ENV DD_APM_NON_LOCAL_TRAFFIC=true
ENV DD_DOGSTATSD_NON_LOCAL_TRAFFIC=true
ENV DD_HOSTNAME=test
ENV DD_TRACE_STARTUP_LOGS=true
ENV DD_SITE=datadoghq.eu

ARG DD_API_KEY
ENV DD_API_KEY=$DD_API_KEY

FROM node:16.6.1-alpine3.14

# Copy your application files to the Docker container
COPY . /app
WORKDIR /app

# Install your application's dependencies
RUN npm install

# Set the Docker container to run your application when it starts
CMD ["node", "index.js"]

EXPOSE 3000
80 replies