Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,7 @@ services:
- 8080:8080
- 8181:8181
- 8081:8081
shm_size: "1gb"
restart: unless-stopped
```

Expand All @@ -371,6 +372,7 @@ docker run -d \
-p 8181:8181 \
-p 8081:8081 \
-v /path/to/calibre/config:/config \
--shm-size="1gb" \
--restart unless-stopped \
lscr.io/linuxserver/calibre:latest
```
Expand All @@ -390,6 +392,7 @@ Containers are configured using parameters passed at runtime (such as those abov
| `-e PASSWORD=` | Optionally set a password for the gui. |
| `-e CLI_ARGS=` | Optionally pass cli start arguments to calibre. |
| `-v /config` | Where calibre should store its database and library. |
| `--shm-size=` | Recommended for all desktop images. |
| `--security-opt seccomp=unconfined` | For Docker Engine only, many modern gui apps need this to function as syscalls are unkown to Docker. |

## Environment variables from files (Docker secrets)
Expand Down
2 changes: 2 additions & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ opt_param_env_vars:
opt_security_opt_param: true
opt_security_opt_param_vars:
- {run_var: "seccomp=unconfined", compose_var: "seccomp:unconfined", desc: "For Docker Engine only, many modern gui apps need this to function as syscalls are unkown to Docker."}
custom_params:
- {name: "shm-size", name_compose: "shm_size", value: "1gb", desc: "Recommended for all desktop images."}
# Selkies blurb settings
selkies_blurb: true
external_http_port: "8080"
Expand Down