Bladeren bron

upgraded to 7.2.97

tags/1.0.0^0
Robin Thoni 8 maanden geleden
bovenliggende
commit
d63db2f0f1
Getekend door: Robin THONI <robin@rthoni.com> GPG sleutel-ID: 4E09DEF46B99E61E
2 gewijzigde bestanden met toevoegingen van 3 en 3 verwijderingen
  1. 2
    2
      unifi-controller/Dockerfile
  2. 1
    1
      unifi-controller/docker-build.sh

+ 2
- 2
unifi-controller/Dockerfile Bestand weergeven

4
 
4
 
5
 ARG DEBIAN_FRONTEND=noninteractive
5
 ARG DEBIAN_FRONTEND=noninteractive
6
 
6
 
7
-ENV PKGURL=https://dl.ubnt.com/unifi/5.10.17/unifi_sysvinit_all.deb
8
-
9
 ENV BASEDIR=/usr/lib/unifi \
7
 ENV BASEDIR=/usr/lib/unifi \
10
     DATADIR=/unifi/data \
8
     DATADIR=/unifi/data \
11
     LOGDIR=/unifi/log \
9
     LOGDIR=/unifi/log \
66
  && chmod +x /usr/local/bin/docker-healthcheck.sh \
64
  && chmod +x /usr/local/bin/docker-healthcheck.sh \
67
  && chmod +x /usr/local/bin/docker-build.sh
65
  && chmod +x /usr/local/bin/docker-build.sh
68
 
66
 
67
+ENV PKGURL=https://dl.ubnt.com/unifi/7.2.97/unifi_sysvinit_all.deb
68
+
69
 # Push installing openjdk-8-jre first, so that the unifi package doesn't pull in openjdk-7-jre as a dependency? Else uncomment and just go with openjdk-7.
69
 # Push installing openjdk-8-jre first, so that the unifi package doesn't pull in openjdk-7-jre as a dependency? Else uncomment and just go with openjdk-7.
70
 RUN set -ex \
70
 RUN set -ex \
71
  && mkdir -p /usr/share/man/man1/ \
71
  && mkdir -p /usr/share/man/man1/ \

+ 1
- 1
unifi-controller/docker-build.sh Bestand weergeven

47
 chown -R unifi:unifi /usr/lib/unifi
47
 chown -R unifi:unifi /usr/lib/unifi
48
 rm -rf /var/lib/apt/lists/*
48
 rm -rf /var/lib/apt/lists/*
49
 
49
 
50
-rm -rf ${ODATADIR} ${OLOGDIR}
50
+rm -rf ${ODATADIR} ${OLOGDIR} ${BASEDIR}/*
51
 mkdir -p ${DATADIR} ${LOGDIR}
51
 mkdir -p ${DATADIR} ${LOGDIR}
52
 ln -s ${DATADIR} ${BASEDIR}/data
52
 ln -s ${DATADIR} ${BASEDIR}/data
53
 ln -s ${RUNDIR} ${BASEDIR}/run
53
 ln -s ${RUNDIR} ${BASEDIR}/run

Laden…
Annuleren
Opslaan