Skip to content

Commit 2811aba

Browse files
committed
Fix missing bool
1 parent a39eec3 commit 2811aba

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ services:
8181
- TZ=Etc/UTC
8282
volumes:
8383
- /path/to/kavita/config:/config
84+
- /path/to/data:/data #optional
8485
ports:
8586
- 5000:5000
8687
restart: unless-stopped
@@ -96,6 +97,7 @@ docker run -d \
9697
-e TZ=Etc/UTC \
9798
-p 5000:5000 \
9899
-v /path/to/kavita/config:/config \
100+
-v /path/to/data:/data `#optional` \
99101
--restart unless-stopped \
100102
lscr.io/linuxserver/kavita:latest
101103
```
@@ -111,6 +113,7 @@ Containers are configured using parameters passed at runtime (such as those abov
111113
| `-e PGID=1000` | for GroupID - see below for explanation |
112114
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
113115
| `-v /config` | Contains all relevant configuration files. |
116+
| `-v /data` | Media library containing manga, comics and books. |
114117

115118
## Environment variables from files (Docker secrets)
116119

readme-vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ param_volumes:
2323
param_usage_include_ports: true
2424
param_ports:
2525
- {external_port: "5000", internal_port: "5000", port_desc: "web gui"}
26-
opt_param_usage_include_vols:
26+
opt_param_usage_include_vols: true
2727
opt_param_volumes:
2828
- {vol_path: "/data", vol_host_path: "/path/to/data", desc: "Media library containing manga, comics and books."}
2929
# application setup block

0 commit comments

Comments
 (0)