Update docker-compose.yml
This commit is contained in:
parent
b1122748df
commit
1c87fa90ae
1 changed files with 23 additions and 12 deletions
|
@ -1,15 +1,26 @@
|
||||||
version: '3.3'
|
version: "2.1"
|
||||||
services:
|
services:
|
||||||
stirling-pdf:
|
installer:
|
||||||
image: frooodle/s-pdf:latest-ultra-lite
|
image: nicholaswilde/cryptpad
|
||||||
|
container_name: cryptpad
|
||||||
ports:
|
ports:
|
||||||
- 127.0.0.1:1213:1213
|
- 3000:3000
|
||||||
volumes:
|
restart: unless-stopped
|
||||||
- ./trainingData:/usr/share/tessdata #Required for extra OCR languages
|
|
||||||
- ./extraConfigs:/configs
|
|
||||||
# - ./customFiles:/customFiles/
|
|
||||||
# - ./logs:/logs/
|
|
||||||
environment:
|
environment:
|
||||||
- DOCKER_ENABLE_SECURITY=false
|
- TZ=America/Los_Angeles # optional
|
||||||
- INSTALL_BOOK_AND_ADVANCED_HTML_OPS=false
|
- PUID=0 # optional
|
||||||
- LANGS=en_GB
|
- PGID=0 # optional
|
||||||
|
volumes:
|
||||||
|
- blob:/blob
|
||||||
|
- block:/block
|
||||||
|
- customize:/customize
|
||||||
|
- config:/config
|
||||||
|
- data:/data
|
||||||
|
- datastore:/datastore
|
||||||
|
volumes:
|
||||||
|
blob:
|
||||||
|
block:
|
||||||
|
customize:
|
||||||
|
config:
|
||||||
|
data:
|
||||||
|
datastore:
|
Loading…
Reference in a new issue