From c5000d67a64efe3cd9ca2d784df3f8cc319b4abb Mon Sep 17 00:00:00 2001 From: itepechi <72330683+itepechi@users.noreply.github.com> Date: Sat, 16 Sep 2023 06:58:23 +0900 Subject: [PATCH] Update Compose file to support Meilisearch and Elasticsearch --- docker-compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 196241609..2adf5b72d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -34,6 +34,21 @@ services: - ./static/:/var/lib/akkoma/static/:Z - ./uploads/:/var/lib/akkoma/uploads/:Z - ./etc/:/etc/akkoma/:Z + + ## Comment out the following container if you want to use Meilisearch + # meili: + # image: getmeili/meilisearch:v1.3 + # restart: unless-stopped + # environment: + # MEILI_NO_ANALYTICS: true + + ## Comment out the following container if you want to use Elasticsearch + # elastic: + # image: elasticsearch:7.17.13 + # environment: + # discovery.type: single-node + # xpack.security.enabled: false + ## Enable the following volume if you are running Docker in emulated ## environments and getting permission errors # volumes: