youridb
youridb
RRailway
Created by exotic4599 on 5/30/2023 in #✋|help
Not able to use an endpoint on railway but all other are working fine
mb
59 replies
RRailway
Created by exotic4599 on 5/30/2023 in #✋|help
Not able to use an endpoint on railway but all other are working fine
ah right haha
59 replies
RRailway
Created by exotic4599 on 5/30/2023 in #✋|help
Not able to use an endpoint on railway but all other are working fine
just to check wether it works
59 replies
RRailway
Created by exotic4599 on 5/30/2023 in #✋|help
Not able to use an endpoint on railway but all other are working fine
shouldn't allow_origins be "*"?
59 replies
RRailway
Created by youridb on 5/30/2023 in #✋|help
Connection between MySQL and Power BI
N/A
3 replies
RRailway
Created by youridb on 12/17/2022 in #✋|help
Docker run only
I'm really interested in what your solution was without a database. Would you mind sharing it? Or at least the Thread you explained it in?
11 replies
RRailway
Created by youridb on 12/17/2022 in #✋|help
Docker run only
I used the following Dockerfile:
FROM quay.io/keycloak/keycloak:latest as builder

ARG DB_URL
ARG DB_USERNAME
ARG DB_PASSWORD
ARG HOSTNAME
# Railway should automatically specify this port
ARG PORT

ENV KC_HEALTH_ENABLED=true
ENV KC_METRICS_ENABLED=true
ENV KC_FEATURES=token-exchange
ENV KC_DB=postgres

RUN /opt/keycloak/bin/kc.sh build --db=postgres

ENV KEYCLOAK_ADMIN=admin
ENV KEYCLOAK_ADMIN_PASSWORD=admin

ENV KC_HTTP_PORT=${PORT}
ENV KC_HTTP_HOST=0.0.0.0
ENV KC_PROXY=edge

ENV KC_DB_URL=${DB_URL}
ENV KC_DB_USERNAME=${DB_USERNAME}
ENV KC_DB_PASSWORD=${DB_PASSWORD}
ENV KC_HOSTNAME=${HOSTNAME}
FROM quay.io/keycloak/keycloak:latest as builder

ARG DB_URL
ARG DB_USERNAME
ARG DB_PASSWORD
ARG HOSTNAME
# Railway should automatically specify this port
ARG PORT

ENV KC_HEALTH_ENABLED=true
ENV KC_METRICS_ENABLED=true
ENV KC_FEATURES=token-exchange
ENV KC_DB=postgres

RUN /opt/keycloak/bin/kc.sh build --db=postgres

ENV KEYCLOAK_ADMIN=admin
ENV KEYCLOAK_ADMIN_PASSWORD=admin

ENV KC_HTTP_PORT=${PORT}
ENV KC_HTTP_HOST=0.0.0.0
ENV KC_PROXY=edge

ENV KC_DB_URL=${DB_URL}
ENV KC_DB_USERNAME=${DB_USERNAME}
ENV KC_DB_PASSWORD=${DB_PASSWORD}
ENV KC_HOSTNAME=${HOSTNAME}
11 replies
RRailway
Created by youridb on 12/17/2022 in #✋|help
Docker run only
N/A
11 replies