This repository was archived by the owner on Jan 7, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -264,6 +264,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
264264
265265## Versions
266266
267+ * ** 23.01.23:** - Exclude ` run ` from ` /config ` volume.
267268* ** 30.11.22:** - Bump JRE to 11.
268269* ** 01.06.22:** - Deprecate armhf.
269270* ** 23.12.21:** - Move min/max memory config from run to system.properties.
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ app_setup_block: |
6666
6767# changelog
6868changelogs :
69+ - { date: "23.01.23:", desc: "Exclude `run` from `/config` volume."}
6970 - { date: "30.11.22:", desc: "Bump JRE to 11."}
7071 - { date: "01.06.22:", desc: "Deprecate armhf."}
7172 - { date: "23.12.21:", desc: "Move min/max memory config from run to system.properties."}
Original file line number Diff line number Diff line change 22
33# create our folders
44mkdir -p \
5- /config/{data,logs,run }
5+ /config/{data,logs}
66
77
88# create symlinks for config
99symlinks=( \
1010/usr/lib/unifi/data \
11- /usr/lib/unifi/logs \
12- /usr/lib/unifi/run )
11+ /usr/lib/unifi/logs )
1312
1413for i in "${symlinks[@]}"
1514do
8685# permissions
8786chown -R abc:abc \
8887 /config \
89- /usr/lib/unifi
88+ /usr/lib/unifi \
89+ /run/unifi
You can’t perform that action at this time.
0 commit comments