mirror of
https://github.com/buanet/ioBroker.docker.git
synced 2025-12-18 10:59:00 +02:00
enhance dockerfile
This commit is contained in:
27
CHANGELOG.md
27
CHANGELOG.md
@@ -1,16 +1,19 @@
|
||||
## Changelog
|
||||
### v8.0.0-beta.1 (20.02.2023)
|
||||
* upgrade node version to recommended node18
|
||||
* rewrite of multihost setup handling
|
||||
* rewrite of custom objects and states db setup handling
|
||||
* enhance initial packages install/ update
|
||||
* enhance logging and error handling
|
||||
* add volume instruction to dockerfile
|
||||
* add support for password protected custom objects and states db ([#306](https://github.com/buanet/ioBroker.docker/issues/306))
|
||||
* add support for redis sentinel ([#311](https://github.com/buanet/ioBroker.docker/issues/311))
|
||||
* add restore command to maintenance script
|
||||
* add database connection check at startup
|
||||
* remove initial restore feature
|
||||
|
||||
### v8.0.0 (coming soon)
|
||||
* enhance dockerfile, reduce image size ([#323](https://github.com/buanet/ioBroker.docker/issues/323))
|
||||
* v8.0.0-beta.1 (20.02.2023)
|
||||
* upgrade node version to recommended node18
|
||||
* rewrite of multihost setup handling
|
||||
* rewrite of custom objects and states db setup handling
|
||||
* enhance initial packages install/ update
|
||||
* enhance logging and error handling
|
||||
* add volume instruction to dockerfile
|
||||
* add support for password protected custom objects and states db ([#306](https://github.com/buanet/ioBroker.docker/issues/306))
|
||||
* add support for redis sentinel ([#311](https://github.com/buanet/ioBroker.docker/issues/311))
|
||||
* add restore command to maintenance script
|
||||
* add database connection check at startup
|
||||
* remove initial restore feature
|
||||
|
||||
### v7.2.0 (12.12.2022)
|
||||
* update docs
|
||||
|
||||
20
debian/node18/Dockerfile
vendored
20
debian/node18/Dockerfile
vendored
@@ -12,6 +12,10 @@ LABEL org.opencontainers.image.title="Official ioBroker Docker Image" \
|
||||
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
|
||||
# Copy scripts
|
||||
COPY scripts /opt/scripts
|
||||
COPY userscripts /opt/userscripts
|
||||
|
||||
# Install prerequisites (including node) and generating locales
|
||||
RUN apt-get update && apt-get install -y \
|
||||
apt-utils \
|
||||
@@ -38,18 +42,14 @@ RUN apt-get update && apt-get install -y \
|
||||
# Generating locales
|
||||
&& sed -i 's/^# *\(de_DE.UTF-8\)/\1/' /etc/locale.gen \
|
||||
&& sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen \
|
||||
&& locale-gen
|
||||
|
||||
# Create directorys and copy scripts
|
||||
COPY scripts /opt/scripts
|
||||
COPY userscripts /opt/userscripts
|
||||
RUN chmod 777 /opt/scripts/ \
|
||||
&& locale-gen \
|
||||
# Change permissions for scripts
|
||||
&& chmod 777 /opt/scripts/ \
|
||||
&& chmod 777 /opt/userscripts/ \
|
||||
&& chmod +x /opt/scripts/*.sh \
|
||||
&& chmod +x /opt/userscripts/*.sh
|
||||
|
||||
# Prepare and install ioBroker
|
||||
RUN mkdir -p /opt/scripts/.docker_config/ \
|
||||
&& chmod +x /opt/userscripts/*.sh \
|
||||
# Prepare
|
||||
&& mkdir -p /opt/scripts/.docker_config/ \
|
||||
&& echo "starting" > /opt/scripts/.docker_config/.healthcheck \
|
||||
&& echo "${VERSION}" > /opt/scripts/.docker_config/.thisisdocker \
|
||||
&& echo "true" > /opt/.first_run \
|
||||
|
||||
Reference in New Issue
Block a user