mirror of
https://github.com/MisskeyIO/misskey
synced 2024-11-23 22:56:49 +09:00
27 lines
625 B
YAML
27 lines
625 B
YAML
version: "3"
|
|
|
|
services:
|
|
dragonflytest:
|
|
image: docker.dragonflydb.io/dragonflydb/dragonfly
|
|
ulimits:
|
|
memlock: -1
|
|
environment:
|
|
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
|
|
ports:
|
|
- "127.0.0.1:56312:6379"
|
|
|
|
dbtest:
|
|
image: postgres:15
|
|
ports:
|
|
- "127.0.0.1:54312:5432"
|
|
environment:
|
|
POSTGRES_DB: "test-misskey"
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|