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
264
264
265
265
## Versions
266
266
267
+ * ** 23.01.23:** - Exclude ` run ` from ` /config ` volume.
267
268
* ** 30.11.22:** - Bump JRE to 11.
268
269
* ** 01.06.22:** - Deprecate armhf.
269
270
* ** 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: |
66
66
67
67
# changelog
68
68
changelogs :
69
+ - { date: "23.01.23:", desc: "Exclude `run` from `/config` volume."}
69
70
- { date: "30.11.22:", desc: "Bump JRE to 11."}
70
71
- { date: "01.06.22:", desc: "Deprecate armhf."}
71
72
- { 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 2
2
3
3
# create our folders
4
4
mkdir -p \
5
- /config/{data,logs,run }
5
+ /config/{data,logs}
6
6
7
7
8
8
# create symlinks for config
9
9
symlinks=( \
10
10
/usr/lib/unifi/data \
11
- /usr/lib/unifi/logs \
12
- /usr/lib/unifi/run )
11
+ /usr/lib/unifi/logs )
13
12
14
13
for i in "${symlinks[@]}"
15
14
do
86
85
# permissions
87
86
chown -R abc:abc \
88
87
/config \
89
- /usr/lib/unifi
88
+ /usr/lib/unifi \
89
+ /run/unifi
You can’t perform that action at this time.
0 commit comments