Skip to content

Commit

Permalink
Bugfix: elasticsearch and kibana services mistakenly removed
Browse files Browse the repository at this point in the history
  • Loading branch information
csandanov committed Nov 12, 2024
1 parent f094011 commit 2d96927
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ SOLR_CONFIG_SET="search_api_solr_4.1.6"

### --- ELASTICSEARCH ---

ELASTICSEARCH_TAG=7-5.19.7
ELASTICSEARCH_TAG=7-5.19.11

### --- KIBANA ---

KIBANA_TAG=7-5.19.7
KIBANA_TAG=7-5.19.11

### --- VALKEY ---

Expand Down
17 changes: 17 additions & 0 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,23 @@ services:
# - files:/mnt/files
# - ./:/mnt/codebase:cached

# elasticsearch:
# image: wodby/elasticsearch:$ELASTICSEARCH_TAG
# environment:
# ES_JAVA_OPTS: "-Xms500m -Xmx500m"
# ulimits:
# memlock:
# soft: -1
# hard: -1

# kibana:
# image: wodby/kibana:$KIBANA_TAG
# depends_on:
# - elasticsearch
# labels:
# - "traefik.http.services.${PROJECT_NAME}_kibana.loadbalancer.server.port=5601"
# - "traefik.http.routers.${PROJECT_NAME}_kibana.rule=Host(`kibana.${PROJECT_BASE_URL}`)"

# opensmtpd:
# container_name: "${PROJECT_NAME}_opensmtpd"
# image: wodby/opensmtpd:$OPENSMTPD_TAG
Expand Down

0 comments on commit 2d96927

Please sign in to comment.