You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to run cloudbeaver server inside of a custom container? I need to start it using supervisord to have the ability to restart the server when connection configurations change.
# Dockerfile
FROM dbeaver/cloudbeaver:22.0.1
RUN apt-get update && apt-get install -y supervisor
COPY services.conf /etc/supervisor/conf.d/services.conf
EXPOSE 8978
CMD ["/usr/bin/supervisord"]
I start the server internally in the container, however the ui fails on http://localhost:8978/api/gql, with the error "(failed)net::ERR_CONNECTION_REFUSED".
Is it possible to run cloudbeaver server inside of a custom container? I need to start it using supervisord to have the ability to restart the server when connection configurations change.
I start the server internally in the container, however the ui fails on http://localhost:8978/api/gql, with the error "(failed)net::ERR_CONNECTION_REFUSED".
My env vars are just
The text was updated successfully, but these errors were encountered: