forked from reonokiy/acfun_tag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
38 lines (37 loc) · 999 Bytes
/
compose.yml
File metadata and controls
38 lines (37 loc) · 999 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
services:
neo4j:
image: neo4j:2026.01.4
container_name: acfun-neo4j
restart: unless-stopped
ports:
- "7474:7474"
- "7687:7687"
environment:
NEO4J_AUTH: neo4j/acfunneo4j
NEO4J_server_memory_heap_initial__size: 1G
NEO4J_server_memory_heap_max__size: 2G
NEO4J_server_memory_pagecache_size: 1G
volumes:
- ./data/neo4j/data:/data
- ./data/neo4j/logs:/logs
- ./data/neo4j/import:/import
- ./data/neo4j/plugins:/plugins
healthcheck:
test: ["CMD", "bash", "-lc", "exec 3<>/dev/tcp/127.0.0.1/7687"]
interval: 10s
timeout: 5s
retries: 12
qdrant:
image: qdrant/qdrant:latest
container_name: acfun-qdrant
restart: unless-stopped
ports:
- "6333:6333"
- "6334:6334"
volumes:
- ./data/qdrant_storage:/qdrant/storage
healthcheck:
test: ["CMD", "bash", "-lc", "exec 3<>/dev/tcp/127.0.0.1/6333"]
interval: 10s
timeout: 5s
retries: 12