Hexworker
Hexworker
RRailway
Created by Hexworker on 9/6/2024 in #✋|help
Is there a way to get a prompt on a deployed service?
I'm trying to debug my observability setup (whether prometheus is accessible from my deployed app). Is this possible?
126 replies
RRailway
Created by Hexworker on 9/6/2024 in #✋|help
How do I attach a volume to a service?
I've been trying to run a File browser instance (as was suggested here) but I can't figure out how to attach a specific volume to it. It always deploys with its own volume which I can delete, but I can't seem to drag'n'drop or configure the volume nor the file browser to point into the right direction. What am I doing wrong?
57 replies
RRailway
Created by Hexworker on 8/29/2024 in #✋|help
How can I access a volume on Railway?
I'm trying to put files into a volume I created, but it seems that I can't do that. Is there a way to do so?
16 replies
RRailway
Created by Hexworker on 8/29/2024 in #✋|help
Is there a way to translate my docker-compose file to a railway config file?
I'm new to railway and I was trying to create a railway.json file do describe my deployment but it seems that this can only be used to describe my app (not including its services). Is there a way to transform my existing docker-compose file into a descriptor that I can use instead of having to fiddle around on the Railway UI? This is what I have for reference (I omitted the details):
version: "3.7"

services:

postgres:
image: postgres
tempo:
image: grafana/tempo:latest
prometheus:
image: prom/prometheus:latest
grafana:
image: grafana/grafana:10.1.1
version: "3.7"

services:

postgres:
image: postgres
tempo:
image: grafana/tempo:latest
prometheus:
image: prom/prometheus:latest
grafana:
image: grafana/grafana:10.1.1
17 replies