Commit ceb6bfb3 by chalermpong

dbeaver

parent ee52882a
......@@ -7,4 +7,12 @@ PGADMIN_DEFAULT_EMAIL = user@user
PGADMIN_DEFAULT_PASSWORD = password
PGADMIN_PORT = 8888
SALT_USER = saltuser1
SALT_PASSWORD = password
\ No newline at end of file
SALT_PASSWORD = password
CLOUDBEAVER_AUTH_PROXY_PROVIDER_URI=http://localhost:8978
CLOUDBEAVER_ADMIN_USERNAME=admin
CLOUDBEAVER_ADMIN_PASSWORD=admin
CLOUDBEAVER_POSTGRES_HOST=postgres
CLOUDBEAVER_POSTGRES_PORT=5432
CLOUDBEAVER_POSTGRES_DB=${POSTGRES_DB}
CLOUDBEAVER_POSTGRES_USER=${POSTGRES_USER}
CLOUDBEAVER_POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
\ No newline at end of file
......@@ -59,6 +59,22 @@ services:
networks:
- postgres # Connect container to the 'postgres' network
restart: unless-stopped # Restart container only if it exits abnormally
cloudbeaver:
image: harbor.nexpie.com/flowstack/cloudbeaver:1.0.1-3-97145ca9 #1.0.1-0-f0c07f4d
restart: always
depends_on:
- pg_grafana
volumes:
- volume-cloudbeaver:/opt/cloudbeaver/workspace
environment:
- CLOUDBEAVER_AUTH_PROXY_PROVIDER_URI=${CLOUDBEAVER_AUTH_PROXY_PROVIDER_URI}
- CLOUDBEAVER_ADMIN_USERNAME=${CLOUDBEAVER_ADMIN_USERNAME}
- CLOUDBEAVER_ADMIN_PASSWORD=${CLOUDBEAVER_ADMIN_PASSWORD}
- CLOUDBEAVER_POSTGRES_HOST=postgres
- CLOUDBEAVER_POSTGRES_PORT=5432
- CLOUDBEAVER_POSTGRES_DB=${POSTGRES_DB}
- CLOUDBEAVER_POSTGRES_USER=${POSTGRES_USER}
- CLOUDBEAVER_POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
networks:
postgres:
......@@ -67,3 +83,4 @@ networks:
volumes:
postgres: # Empty volume definition for pg_grafana
pgadmin: # Empty volume definition for pgadmin
volume-cloudbeaver:
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment