@@ -81,7 +81,7 @@ services:
8181 - PGID=1000
8282 - TZ=Etc/UTC
8383 volumes :
84- - < /path/to/appdata /config> :/config
84+ - /path/to/nginx /config:/config
8585 ports :
8686 - 80:80
8787 - 443:443
@@ -98,7 +98,7 @@ docker run -d \
9898 -e TZ=Etc/UTC \
9999 -p 80:80 \
100100 -p 443:443 \
101- -v < /path/to/appdata /config> :/config \
101+ -v /path/to/nginx /config:/config \
102102 --restart unless-stopped \
103103 lscr.io/linuxserver/nginx:latest
104104```
@@ -114,7 +114,7 @@ Containers are configured using parameters passed at runtime (such as those abov
114114| ` -e PUID=1000 ` | for UserID - see below for explanation |
115115| ` -e PGID=1000 ` | for GroupID - see below for explanation |
116116| ` -e TZ=Etc/UTC ` | specify a timezone to use, see this [ list] ( https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List ) . |
117- | ` -v /config ` | Contains your www content and all relevant configuration files. |
117+ | ` -v /config ` | Persistent config files |
118118
119119## Environment variables from files (Docker secrets)
120120
@@ -292,6 +292,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
292292
293293# # Versions
294294
295+ * ** 23.12.23:** - Rebase to Alpine 3.19 with php 8.3.
295296* ** 25.05.23:** - Rebase to Alpine 3.18, deprecate armhf.
296297* ** 16.01.23:** - Remove nchan module because it keeps causing crashes.
297298* ** 22.12.22:** - Rebase to Alpine 3.17 with PHP 8.1, migrate to s6v3.
0 commit comments