107 lines
2.2 KiB
YAML
107 lines
2.2 KiB
YAML
version: "3"
|
|
|
|
services:
|
|
web:
|
|
build: .
|
|
restart: always
|
|
links:
|
|
- db
|
|
- dragonfly
|
|
# - mcaptcha
|
|
# - meilisearch
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
dragonfly:
|
|
condition: service_healthy
|
|
ports:
|
|
- "3000:3000"
|
|
networks:
|
|
- internal_network
|
|
- external_network
|
|
volumes:
|
|
- ./files:/misskey/files
|
|
- ./.config:/misskey/.config:ro
|
|
|
|
dragonfly:
|
|
restart: always
|
|
image: docker.dragonflydb.io/dragonflydb/dragonfly
|
|
ulimits:
|
|
memlock: -1
|
|
environment:
|
|
DFLY_snapshot_cron: '* * * * *'
|
|
DFLY_version_check: false
|
|
DFLY_tcp_backlog: 2048
|
|
DFLY_default_lua_flags: allow-undeclared-keys
|
|
DFLY_pipeline_squash: 0
|
|
DFLY_multi_exec_squash: false
|
|
DFLY_conn_io_threads: 4
|
|
DFLY_epoll_file_threads: 4
|
|
DFLY_proactor_threads: 4
|
|
networks:
|
|
- internal_network
|
|
volumes:
|
|
- ./redis:/data
|
|
|
|
db:
|
|
restart: always
|
|
image: postgres:15-alpine
|
|
networks:
|
|
- internal_network
|
|
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:
|
|
# 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
|
|
# environment:
|
|
# - MEILI_NO_ANALYTICS=true
|
|
# - MEILI_ENV=production
|
|
# env_file:
|
|
# - .config/meilisearch.env
|
|
# networks:
|
|
# - internal_network
|
|
# volumes:
|
|
# - ./meili_data:/meili_data
|
|
|
|
networks:
|
|
internal_network:
|
|
internal: true
|
|
external_network:
|