-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (25 loc) · 722 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (25 loc) · 722 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
services:
cryptpad:
build: .
image: cryptpaws:latest
hostname: cryptpad
restart: unless-stopped
environment:
- CPAD_MAIN_DOMAIN=https://cryptpaws.openpaws.ai
- CPAD_SANDBOX_DOMAIN=https://cryptbox.openpaws.ai
- CPAD_CONF=/cryptpad/config/config.js
volumes:
- ./data/blob:/cryptpad/blob
- ./data/block:/cryptpad/block
- ./customize:/cryptpad/customize
- ./data/data:/cryptpad/data
- ./data/files:/cryptpad/datastore
- ./config/config.js:/cryptpad/config/config.js:ro
ports:
- "127.0.0.1:3002:3000"
- "127.0.0.1:3001:3001"
- "127.0.0.1:3005:3003"
ulimits:
nofile:
soft: 1000000
hard: 1000000