summaryrefslogtreecommitdiff
path: root/compose_example.yml
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2024-08-02 12:25:58 +0100
committerdakkar <dakkar@thenautilus.net>2024-08-02 12:25:58 +0100
commitcfa9b852df9e0293865b3acbd67d59265962e552 (patch)
treea408ad670956a45c4e162e4ecc97a3624e2b0f20 /compose_example.yml
parentmerge: rate limit all password checks - fixes #540 (!568) (diff)
parentMerge pull request #14233 from misskey-dev/develop (diff)
downloadsharkey-cfa9b852df9e0293865b3acbd67d59265962e552.tar.gz
sharkey-cfa9b852df9e0293865b3acbd67d59265962e552.tar.bz2
sharkey-cfa9b852df9e0293865b3acbd67d59265962e552.zip
Merge remote-tracking branch 'misskey/master' into feature/misskey-2024.07
Diffstat (limited to 'compose_example.yml')
-rw-r--r--compose_example.yml95
1 files changed, 95 insertions, 0 deletions
diff --git a/compose_example.yml b/compose_example.yml
new file mode 100644
index 0000000000..15df128eff
--- /dev/null
+++ b/compose_example.yml
@@ -0,0 +1,95 @@
+services:
+ web:
+# image: registry.activitypub.software/transfem-org/sharkey:latest
+ build: .
+ restart: always
+ links:
+ - db
+ - redis
+# - mcaptcha
+# - meilisearch
+ depends_on:
+ db:
+ condition: service_healthy
+ redis:
+ condition: service_healthy
+ ports:
+ - "3000:3000"
+ networks:
+ - shonk
+ # env_file:
+ # - .config/docker.env
+ volumes:
+ - ./files:/sharkey/files
+ - ./.config:/sharkey/.config:ro
+
+ redis:
+ restart: always
+ image: redis:7-alpine
+ networks:
+ - shonk
+ volumes:
+ - ./redis:/data
+ healthcheck:
+ test: "redis-cli ping"
+ interval: 5s
+ retries: 20
+
+ db:
+ restart: always
+ image: postgres:15-alpine
+ networks:
+ - shonk
+ env_file:
+ - .config/docker.env
+ volumes:
+ - ./db:/var/lib/postgresql/data
+ healthcheck:
+ test: "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"
+ interval: 5s
+ retries: 20
+
+# mcaptcha:
+# restart: always
+# image: mcaptcha/mcaptcha:latest
+# networks:
+# shonks:
+# aliases:
+# - localhost
+# ports:
+# - 7493:7493
+# env_file:
+# - .config/docker.env
+# environment:
+# PORT: 7493
+# MCAPTCHA_redis_URL: "redis://mcaptcha_redis/"
+# depends_on:
+# db:
+# condition: service_healthy
+# mcaptcha_redis:
+# condition: service_healthy
+#
+# mcaptcha_redis:
+# image: mcaptcha/cache:latest
+# networks:
+# - shonks
+# healthcheck:
+# test: "redis-cli ping"
+# interval: 5s
+# retries: 20
+
+# meilisearch:
+# restart: always
+# image: getmeili/meilisearch:v1.3.4
+# environment:
+# - MEILI_NO_ANALYTICS=true
+# - MEILI_ENV=production
+# - MEILI_MASTER_KEY=ChangeThis
+# networks:
+# - shonk
+# volumes:
+# - ./meili_data:/meili_data
+
+
+networks:
+ shonk: