-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
67 lines (64 loc) · 1.87 KB
/
Copy pathdocker-compose.yml
File metadata and controls
67 lines (64 loc) · 1.87 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
services:
postgres:
image: postgres:18.2-alpine3.23
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: oxicloud
ports:
- "5432:5432"
networks:
- oxicloud
volumes:
- pg_data:/var/lib/postgresql/
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
oxicloud:
image: diocrafts/oxicloud:latest
restart: always
environment:
# Return freed heap pages to the OS promptly. mimalloc retains them by
# default, so idle RSS clamps at the peak even after the in-memory caches
# expire; purging immediately makes RSS track the live working set
# (benchmarked: ~400 MB reclaimed on musl/aarch64) at no throughput cost.
# Also baked into the Dockerfile; set here so it applies to the prebuilt
# image too.
MIMALLOC_PURGE_DELAY: "0"
build:
context: .
dockerfile: Dockerfile
# Route `docker compose up --build` / `docker compose build` through the
# cache-mount builder so repeat local builds recompile only changed crates
# (true incremental). Compose v2 uses BuildKit by default, which the
# Dockerfile already requires. The image is functionally identical to the
# default `builder` stage CI uses; only the build path differs.
args:
BUILDER: builder-cache
BIN_DIR: /app/bin
ports:
- "8086:8086"
networks:
- oxicloud
depends_on:
postgres:
condition: service_healthy
env_file:
- .env
volumes:
- storage_data:/app/storage
healthcheck:
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:8086/ready || exit 1"]
interval: 30s
timeout: 5s
start_period: 30s
retries: 3
networks:
oxicloud:
driver: bridge
volumes:
pg_data:
storage_data: