Vishal
Vishal
Explore posts from servers
RRailway
Created by Vishal on 10/11/2024 in #✋|help
Bind mount a file
thanks, It worked
20 replies
RRailway
Created by Vishal on 10/11/2024 in #✋|help
Bind mount a file
any alternative ways where i can deploy a template like this one where a user can edit the config file
20 replies
RRailway
Created by Vishal on 10/11/2024 in #✋|help
Bind mount a file
ok
20 replies
RRailway
Created by Vishal on 10/11/2024 in #✋|help
Bind mount a file
any plans for supporting bind mount a file something like the dokploy has
20 replies
RRailway
Created by Vishal on 10/11/2024 in #✋|help
Bind mount a file
can i get some help here
20 replies
RRailway
Created by Vishal on 10/11/2024 in #✋|help
Bind mount a file
sorry for my bad explanation hope you understand
20 replies
RRailway
Created by Vishal on 10/11/2024 in #✋|help
Bind mount a file
if there is a File Mount like we have Raw Editor option for env and JSON, can there be custom file content space where a config files like yml can be edited
20 replies
RRailway
Created by Vishal on 10/11/2024 in #✋|help
Bind mount a file
it work for me in railway as I deploy using Dockerfile but if i want to create a template how should i do it and how should i allow other users to change the config as required
FROM golang:1.22.5-alpine
WORKDIR /app
COPY . .
RUN go mod download
RUN go build -o app .
RUN apk add --no-cache curl
RUN curl -o example.yml https://gist.githubusercontent.com/example/example/raw/example.yml
EXPOSE 8080
ENTRYPOINT ["./app"]
FROM golang:1.22.5-alpine
WORKDIR /app
COPY . .
RUN go mod download
RUN go build -o app .
RUN apk add --no-cache curl
RUN curl -o example.yml https://gist.githubusercontent.com/example/example/raw/example.yml
EXPOSE 8080
ENTRYPOINT ["./app"]
20 replies
RRailway
Created by Vishal on 10/11/2024 in #✋|help
Bind mount a file
this is how i deploy locally
docker run -d -p 8080:8080 \
-v ./example.yml:/app/example.yml \
exapp/example
docker run -d -p 8080:8080 \
-v ./example.yml:/app/example.yml \
exapp/example
20 replies
RRailway
Created by Vishal on 10/11/2024 in #✋|help
Bind mount a file
i have a go app and entire app works based on .yml config file
20 replies
RRailway
Created by Vishal on 10/11/2024 in #✋|help
Bind mount a file
I do not have any project, i'm here for help to know if there are any ways to bind mount a file
20 replies