Mirsa
Mirsa
RRailway
Created by Mirsa on 10/15/2024 in #✋|help
Pro plan
Hello team, Are there any plans to update the pricing tiers? Currently, $20 worth of credits is more than enough for me for an entire year. However, I occasionally need some of the features available in the pro version. Paying $20 every month seems excessive when I don't even use that much in a year. Is there any consideration being given to creating an intermediate plan? This would be a plan that offers some pro features but at a lower price point, suitable for users like me who don't need the full pro plan but require more than the basic plan offers.
9 replies
RRailway
Created by Mirsa on 9/17/2024 in #✋|help
Gotify password lost
Hello, anyone know how to reset a lost password from gotify ? Project : b584f170-6f91-437d-aee5-a34ac1e86a93
22 replies
RRailway
Created by Mirsa on 9/7/2024 in #✋|help
assets hosting
How much is fast railway to deliver images does it use cdn or something, i mean is it a good idea to store data in the persistent volume ?
149 replies
RRailway
Created by Mirsa on 9/5/2024 in #✋|help
LLM Hosting on Railway
Hello 👋 Can I host an LLM like ollama but able to respond to multiple requests on railway? I'm talking about deploying an LLM with an API capable of responding quickly to a medium number of requests.
8 replies
RRailway
Created by Mirsa on 9/3/2024 in #✋|help
Pocketbase persistent data
I deployed a custom version of pocketbase, and i created a volume at /pb_data but i have an issue with the persistence isn't working, i guess it's a problem with the path/directory.
# Use the official Go image to build the PocketBase binary
FROM golang:1.21-alpine AS builder

# Set the working directory
WORKDIR /app

# Copy go mod and sum files
COPY go.mod go.sum ./

# Download all dependencies
RUN go mod download

# Copy the source code into the container
COPY . .

# Build the PocketBase application
RUN CGO_ENABLED=0 GOOS=linux go build -o pocketbase .

# Start a new stage from scratch
FROM alpine:latest

# Install necessary packages
RUN apk add --no-cache ca-certificates

# Set the working directory
WORKDIR /pb

ENV PORT=8080

# Expose port 8080
EXPOSE 8080

# Copy the binary from the builder stage
COPY --from=builder /app/pocketbase /usr/local/bin/pocketbase

# Command to run PocketBase
CMD ["/usr/local/bin/pocketbase", "serve", "--http=0.0.0.0:8080", "--dir=/pb_data", "--publicDir=/pb_public"]
# Use the official Go image to build the PocketBase binary
FROM golang:1.21-alpine AS builder

# Set the working directory
WORKDIR /app

# Copy go mod and sum files
COPY go.mod go.sum ./

# Download all dependencies
RUN go mod download

# Copy the source code into the container
COPY . .

# Build the PocketBase application
RUN CGO_ENABLED=0 GOOS=linux go build -o pocketbase .

# Start a new stage from scratch
FROM alpine:latest

# Install necessary packages
RUN apk add --no-cache ca-certificates

# Set the working directory
WORKDIR /pb

ENV PORT=8080

# Expose port 8080
EXPOSE 8080

# Copy the binary from the builder stage
COPY --from=builder /app/pocketbase /usr/local/bin/pocketbase

# Command to run PocketBase
CMD ["/usr/local/bin/pocketbase", "serve", "--http=0.0.0.0:8080", "--dir=/pb_data", "--publicDir=/pb_public"]
37 replies
RRailway
Created by Mirsa on 7/5/2024 in #✋|help
An alternative to cloudinary self hosted project ?
Hello, i wish to ban cloudinary and go for a self hosted service. Any one knows an open source project which can provide image hosting, an image delivery app Where i can securely upload my images etc ?
6 replies
RRailway
Created by Mirsa on 3/15/2024 in #✋|help
Deploying gotify from docker Application failed to respond
No description
84 replies