Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions docker/compose/db-client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ services:
profiles: [redis]
depends_on:
- redis
ports:
- "${REDIS_INSIGHT_PORT:-5540}:5540"
environment:
- RI_REDIS_HOST=redis
volumes:
Expand All @@ -31,8 +29,6 @@ services:
hostname: cloud-beaver
image: dbeaver/cloudbeaver:latest
profiles: [mysql, mariadb, postgresql]
ports:
- "${DBEAVER_PORT:-8080}:8978"
environment:
- TZ=${TZ:-}
volumes:
Expand All @@ -51,8 +47,6 @@ services:
profiles: [mongodb]
depends_on:
- mongodb
ports:
- "${MONGO_EXPRESS_PORT:-8081}:8081"
environment:
- TZ=${TZ:-}
- ME_CONFIG_BASICAUTH=false
Expand All @@ -69,12 +63,10 @@ services:
<<: *db-client-service
container_name: KIBANA
hostname: kibana
image: kibana:${ELASTICSEARCH_VERSION:-8.18.0}
image: kibana:${ELASTICSEARCH_VERSION:-9.2.4}
profiles: [elasticsearch]
depends_on:
- elasticsearch
ports:
- "${KIBANA_PORT:-5601}:5601"
environment:
- TZ=${TZ:-}
- "ELASTICSEARCH_HOSTS=http://elasticsearch:9200"
Expand Down
12 changes: 1 addition & 11 deletions docker/compose/db.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ services:
hostname: redis
image: redis/redis-stack-server:${REDIS_VERSION:-latest}
profiles: [redis]
ports:
- "${REDIS_PORT:-6379}:6379"
volumes:
- ../../data/redis:/data
environment:
Expand Down Expand Up @@ -66,8 +64,6 @@ services:
hostname: mysql
image: mysql:${MYSQL_VERSION:-latest}
profiles: [mysql]
ports:
- "${MYSQL_PORT:-3306}:3306"
environment:
- TZ=${TZ:-}
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD:-12345}
Expand All @@ -92,8 +88,6 @@ services:
hostname: mongodb
image: mongo:${MONGODB_VERSION:-latest}
profiles: [mongodb]
ports:
- "${MONGODB_PORT:-27017}:27017"
environment:
- TZ=${TZ:-}
- MONGO_INITDB_ROOT_USERNAME=${MONGODB_ROOT_USERNAME:-root}
Expand All @@ -119,8 +113,6 @@ services:
hostname: mariadb
image: mariadb:${MARIADB_VERSION:-latest}
profiles: [mariadb]
ports:
- "${MARIADB_PORT:-3306}:3306"
environment:
- TZ=${TZ:-}
- MARIADB_ROOT_PASSWORD=${MARIADB_ROOT_PASSWORD:-12345}
Expand All @@ -143,10 +135,8 @@ services:
<<: *db-service
container_name: ELASTICSEARCH
hostname: elasticsearch
image: elasticsearch:${ELASTICSEARCH_VERSION:-8.18.0}
image: elasticsearch:${ELASTICSEARCH_VERSION:-9.2.4}
profiles: [elasticsearch]
ports:
- "${ELASTICSEARCH_PORT:-9200}:9200"
environment:
- TZ=${TZ:-}
- "discovery.type=single-node"
Expand Down
4 changes: 2 additions & 2 deletions docker/compose/http.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ services:
environment:
- TZ=${TZ:-}
ports:
- "${NGINX_HTTP_PORT:-80}:80"
- "${NGINX_HTTPS_PORT:-443}:443"
- "${HTTP_PORT:-80}:80"
- "${HTTPS_PORT:-443}:443"
volumes:
- ../../logs/nginx:/var/log/nginx
- ../../configuration/nginx:/etc/nginx/conf.d:ro
Expand Down
Loading