diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index 6479dad3..6a939087 100644 --- a/DOCUMENTATION/content/introduction/index.md +++ b/DOCUMENTATION/content/introduction/index.md @@ -180,6 +180,7 @@ That's it! enjoy :) - `Wordpress CLI` - Apache ZooKeeper *(Centralized service for distributed systems to a hierarchical key-value store)* - Kibana *(Visualize your Elasticsearch data and navigate the Elastic Stack)* + - Dejavu *(Edit your Elasticsearch data)* - LogStash *(Server-side data processing pipeline that ingests data from a multitude of sources simultaneously)* - Jenkins *(automation server, that provides plugins to support building, deploying and automating any project)* - Certbot *(Automatically enable HTTPS on your website)* diff --git a/dejavu/Dockerfile b/dejavu/Dockerfile new file mode 100644 index 00000000..3effeeb9 --- /dev/null +++ b/dejavu/Dockerfile @@ -0,0 +1,5 @@ +FROM appbaseio/dejavu + +LABEL maintainer="appbase.io " + +EXPOSE 1358 diff --git a/docker-compose.yml b/docker-compose.yml index efdfef9e..b063b53a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -896,6 +896,18 @@ services: - frontend - backend +### Dejavu ############################################## + dejavu: + build: + context: ./dejavu + ports: + - "${DEJAVU_HTTP_PORT}:1358" + depends_on: + - elasticsearch + networks: + - frontend + - backend + ### Certbot ######################################### certbot: build: diff --git a/env-example b/env-example index 9e441836..87d57426 100644 --- a/env-example +++ b/env-example @@ -387,6 +387,10 @@ ELASTICSEARCH_HOST_TRANSPORT_PORT=9300 KIBANA_HTTP_PORT=5601 +### DEJAVU ################################################ + +DEJAVU_HTTP_PORT=1358 + ### MEMCACHED ############################################# MEMCACHED_HOST_PORT=11211