diff options
| author | Chocolate Pie <106949016+chocolate-pie@users.noreply.github.com> | 2024-01-06 20:14:33 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-06 20:14:33 +0900 |
| commit | 072f67d6e71af3d7fa6f5f4c73ae460d6844f511 (patch) | |
| tree | 551589eed9eb21a0b177546f7859b9bead107990 /docker-compose_example.yml | |
| parent | refactor(frontend): `scripts/form.ts`の型定義を修正してTS2344/TS2345... (diff) | |
| download | sharkey-072f67d6e71af3d7fa6f5f4c73ae460d6844f511.tar.gz sharkey-072f67d6e71af3d7fa6f5f4c73ae460d6844f511.tar.bz2 sharkey-072f67d6e71af3d7fa6f5f4c73ae460d6844f511.zip | |
feat: Add support for mCaptcha (#12905)
* feat: Add support for mCaptcha
* fix: Fix docker compose configuration
* chore(frontend/docs): update changelog & fix eslint errors
* `@mcaptcha/vanilla-glue`をダイナミックインポートするように
* chore: Add missing prefix to CHANGELOG
* refactor(backend): 適当につけた変数の名前を変更
Diffstat (limited to 'docker-compose_example.yml')
| -rw-r--r-- | docker-compose_example.yml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/docker-compose_example.yml b/docker-compose_example.yml index 60ba4dc8ca..5cebbe4164 100644 --- a/docker-compose_example.yml +++ b/docker-compose_example.yml @@ -7,6 +7,7 @@ services: links: - db - redis +# - mcaptcha # - meilisearch depends_on: db: @@ -48,6 +49,36 @@ services: interval: 5s retries: 20 +# mcaptcha: +# restart: always +# image: mcaptcha/mcaptcha:latest +# networks: +# internal_network: +# external_network: +# 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: +# - internal_network +# healthcheck: +# test: "redis-cli ping" +# interval: 5s +# retries: 20 + # meilisearch: # restart: always # image: getmeili/meilisearch:v1.3.4 |