Skip to content

Commit 6fc45c1

Browse files
Staging cb-tumblebug v0.10.9
2 parents 1122b2d + 6b5c18f commit 6fc45c1

File tree

1 file changed

+80
-80
lines changed

1 file changed

+80
-80
lines changed

docker-compose.yaml

Lines changed: 80 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ services:
2424

2525
# CB-Tumblebug
2626
cb-tumblebug:
27-
image: cloudbaristaorg/cb-tumblebug:0.10.8
27+
image: cloudbaristaorg/cb-tumblebug:0.10.9
2828
container_name: cb-tumblebug
2929
build:
3030
context: .
@@ -143,8 +143,8 @@ services:
143143
restart: always
144144
networks:
145145
- internal_network
146-
# Enable external network for outbound access (not ideal for security)
147-
- external_network
146+
# # Enable external network for outbound access (not ideal for security)
147+
# - external_network
148148
ports:
149149
- 5432:5432
150150
volumes:
@@ -162,7 +162,7 @@ services:
162162

163163
# CB-Spider
164164
cb-spider:
165-
image: cloudbaristaorg/cb-spider:0.10.7
165+
image: cloudbaristaorg/cb-spider:0.10.8
166166
container_name: cb-spider
167167
# build:
168168
# context: ../cb-spider
@@ -196,7 +196,7 @@ services:
196196
# CB-MapUI
197197
# This is the Map-based client for CB-Tumblebug.
198198
cb-mapui:
199-
image: cloudbaristaorg/cb-mapui:0.10.6
199+
image: cloudbaristaorg/cb-mapui:0.10.7
200200
container_name: cb-mapui
201201
labels:
202202
# Explicitly tell Traefik to expose this container
@@ -330,79 +330,79 @@ services:
330330
# retries: 3
331331
# start_period: 10s
332332

333-
# CB-Tumblebug Metabase Dashboard for PostgreSQL
334-
# Enable this service to manage the PostgreSQL database of CB-Tumblebug.
335-
cb-tumblebug-metabase:
336-
image: metabase/metabase:latest
337-
container_name: cb-tumblebug-metabase
338-
restart: always
339-
networks:
340-
- internal_network
341-
- external_network
342-
ports:
343-
- 3000:3000
344-
environment:
345-
# - MB_DB_TYPE=postgres
346-
# - MB_DB_DBNAME=cb_tumblebug
347-
# - MB_DB_PORT=5432
348-
# - MB_DB_USER=cb_tumblebug
349-
# - MB_DB_PASS=cb_tumblebug
350-
# - MB_DB_HOST=cb-tumblebug-postgres
351-
352-
- MB_ADMIN_PASSWORD=cb_tumblebug11
353-
- MB_ADMIN_FIRST_NAME=Cloud
354-
- MB_ADMIN_LAST_NAME=Barista
355-
- MB_SITE_NAME=CB-Tumblebug Analytics
356-
- MB_SITE_LOCALE=en
357-
- JAVA_TIMEZONE=Asia/Seoul
358-
- MB_JETTY_REQUEST_LOGS_ENABLED=false
359-
- MB_JETTY_ALLOWED_HOSTS=localhost
360-
- MB_LOGGER_LEVEL=OFF
361-
- MB_LOGGING_LEVEL=OFF
362-
- MB_EMOJI_IN_LOGS=false
363-
volumes:
364-
- ./container-volume/cb-tumblebug-container/meta_db/metabase-data:/metabase-data
365-
depends_on:
366-
cb-tumblebug-postgres:
367-
condition: service_healthy
368-
user: "0:0"
369-
logging:
370-
driver: "none"
371-
healthcheck:
372-
test: ["CMD", "curl", "-f", "http://localhost:3000/api/health"]
373-
interval: 30s
374-
timeout: 5s
375-
retries: 3
376-
start_period: 60s
333+
# # CB-Tumblebug Metabase Dashboard for PostgreSQL
334+
# # Enable this service to manage the PostgreSQL database of CB-Tumblebug.
335+
# cb-tumblebug-metabase:
336+
# image: metabase/metabase:latest
337+
# container_name: cb-tumblebug-metabase
338+
# restart: always
339+
# networks:
340+
# - internal_network
341+
# - external_network
342+
# ports:
343+
# - 3000:3000
344+
# environment:
345+
# # - MB_DB_TYPE=postgres
346+
# # - MB_DB_DBNAME=cb_tumblebug
347+
# # - MB_DB_PORT=5432
348+
# # - MB_DB_USER=cb_tumblebug
349+
# # - MB_DB_PASS=cb_tumblebug
350+
# # - MB_DB_HOST=cb-tumblebug-postgres
351+
352+
# - MB_ADMIN_PASSWORD=cb_tumblebug11
353+
# - MB_ADMIN_FIRST_NAME=Cloud
354+
# - MB_ADMIN_LAST_NAME=Barista
355+
# - MB_SITE_NAME=CB-Tumblebug Analytics
356+
# - MB_SITE_LOCALE=en
357+
# - JAVA_TIMEZONE=Asia/Seoul
358+
# - MB_JETTY_REQUEST_LOGS_ENABLED=false
359+
# - MB_JETTY_ALLOWED_HOSTS=localhost
360+
# - MB_LOGGER_LEVEL=OFF
361+
# - MB_LOGGING_LEVEL=OFF
362+
# - MB_EMOJI_IN_LOGS=false
363+
# volumes:
364+
# - ./container-volume/cb-tumblebug-container/meta_db/metabase-data:/metabase-data
365+
# depends_on:
366+
# cb-tumblebug-postgres:
367+
# condition: service_healthy
368+
# user: "0:0"
369+
# logging:
370+
# driver: "none"
371+
# healthcheck:
372+
# test: ["CMD", "curl", "-f", "http://localhost:3000/api/health"]
373+
# interval: 30s
374+
# timeout: 5s
375+
# retries: 3
376+
# start_period: 60s
377377

378-
# CB-Tumblebug pgAdmin Dashboard for PostgreSQL
379-
# Enable this service to manage the PostgreSQL database of CB-Tumblebug.
380-
cb-tumblebug-pgadmin:
381-
image: dpage/pgadmin4:latest
382-
container_name: cb-tumblebug-pgadmin
383-
restart: always
384-
networks:
385-
- internal_network
386-
- external_network
387-
ports:
388-
- 5050:80
389-
volumes:
390-
- ./container-volume/cb-tumblebug-container/meta_db/pgadmin:/var/lib/pgadmin
391-
environment:
392-
393-
- PGADMIN_DEFAULT_PASSWORD=cb_tumblebug
394-
- PGADMIN_CONFIG_SERVER_MODE=True
395-
- PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED=False
396-
- PGADMIN_CONFIG_CONSOLE_LOG_LEVEL=40
397-
- PGADMIN_CONFIG_FILE_LOG_LEVEL=40
398-
- PGADMIN_CONFIG_ENHANCED_COOKIE_PROTECTION=False
399-
- PGADMIN_CONFIG_SESSION_EXPIRATION_TIME=1440
400-
- PGADMIN_CONFIG_ENABLE_PSQL=False
401-
- PGADMIN_CONFIG_ENABLE_CONSOLE_LOGGING=False
402-
- PGADMIN_CONFIG_ENABLE_FILE_LOGGING=False
403-
- PGADMIN_SERVER_JSON={"Servers":{"1":{"Name":"CB-Tumblebug PostgreSQL","Group":"Cloud-Barista","Host":"cb-tumblebug-postgres","Port":5432,"MaintenanceDB":"cb_tumblebug","Username":"cb_tumblebug","SSLMode":"prefer","Password":"cb_tumblebug"}}}
404-
user: "0:0"
405-
depends_on:
406-
- cb-tumblebug-postgres
407-
logging:
408-
driver: "none"
378+
# # CB-Tumblebug pgAdmin Dashboard for PostgreSQL
379+
# # Enable this service to manage the PostgreSQL database of CB-Tumblebug.
380+
# cb-tumblebug-pgadmin:
381+
# image: dpage/pgadmin4:latest
382+
# container_name: cb-tumblebug-pgadmin
383+
# restart: always
384+
# networks:
385+
# - internal_network
386+
# - external_network
387+
# ports:
388+
# - 5050:80
389+
# volumes:
390+
# - ./container-volume/cb-tumblebug-container/meta_db/pgadmin:/var/lib/pgadmin
391+
# environment:
392+
393+
# - PGADMIN_DEFAULT_PASSWORD=cb_tumblebug
394+
# - PGADMIN_CONFIG_SERVER_MODE=True
395+
# - PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED=False
396+
# - PGADMIN_CONFIG_CONSOLE_LOG_LEVEL=40
397+
# - PGADMIN_CONFIG_FILE_LOG_LEVEL=40
398+
# - PGADMIN_CONFIG_ENHANCED_COOKIE_PROTECTION=False
399+
# - PGADMIN_CONFIG_SESSION_EXPIRATION_TIME=1440
400+
# - PGADMIN_CONFIG_ENABLE_PSQL=False
401+
# - PGADMIN_CONFIG_ENABLE_CONSOLE_LOGGING=False
402+
# - PGADMIN_CONFIG_ENABLE_FILE_LOGGING=False
403+
# - PGADMIN_SERVER_JSON={"Servers":{"1":{"Name":"CB-Tumblebug PostgreSQL","Group":"Cloud-Barista","Host":"cb-tumblebug-postgres","Port":5432,"MaintenanceDB":"cb_tumblebug","Username":"cb_tumblebug","SSLMode":"prefer","Password":"cb_tumblebug"}}}
404+
# user: "0:0"
405+
# depends_on:
406+
# - cb-tumblebug-postgres
407+
# logging:
408+
# driver: "none"

0 commit comments

Comments
 (0)