Block a user
infiniteremote-api (18)
Published 2024-04-11 09:37:41 +02:00 by ich777
Installation
docker pull git.minenet.at/ich777/infiniteremote-api:18
sha256:c5827dcc02a5034a15ded8ed817f295ecbf9997d256e91ea03fa6fefc19b588b
Image Layers
ADD file:55ad846fa191e603f48090eae0e4a7149c4066b94406593ec1898ad2c3347937 in / |
CMD ["bash"] |
LABEL org.opencontainers.image.authors=admin@minenet.at |
LABEL org.opencontainers.image.source=https://github.com/ich777/docker-debian-baseimage |
RUN /bin/sh -c echo "deb http://deb.debian.org/debian bookworm contrib non-free non-free-firmware" >> /etc/apt/sources.list && apt-get update && apt-get -y upgrade && apt-get -y install --no-install-recommends wget locales procps && touch /etc/locale.gen && echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && locale-gen && apt-get -y install --reinstall ca-certificates && rm -rf /var/lib/apt/lists/* # buildkit |
ENV LANG=en_US.UTF-8 |
ENV LANGUAGE=en_US:en |
ENV LC_ALL=en_US.UTF-8 |
LABEL org.opencontainers.image.authors=admin@minenet.at |
LABEL org.opencontainers.image.source=https://github.com/ich777/docker-infiniteremote-api |
RUN /bin/sh -c apt-get update && apt-get -y install --no-install-recommends python3 qrencode jq # buildkit |
ENV DATA_DIR=/infiniteremote-api |
ENV BASE_URL=yourdomain.net |
ENV API_URL=https://yourdomain.net |
ENV API_PORT=8000 |
ENV RUSTDESK_KEY=YOURKEY |
ENV FORCE_RD_UPDATE=false |
ENV UMASK=000 |
ENV UID=99 |
ENV GID=100 |
ENV USER=infiniteremote |
ENV DATA_PERM=770 |
RUN /bin/sh -c mkdir $DATA_DIR && useradd -d $DATA_DIR -s /bin/bash $USER && chown -R $USER $DATA_DIR && ulimit -n 2048 # buildkit |
COPY /opt/infiniteremote-api /opt/infiniteremote-api # buildkit |
COPY /opt/db /opt/database # buildkit |
ADD /scripts/ /opt/scripts/ # buildkit |
ADD /nokey.png /opt/nokey.png # buildkit |
RUN /bin/sh -c chmod -R 770 /opt/scripts/ # buildkit |
ENTRYPOINT ["/opt/scripts/start.sh"] |
Labels
Key | Value |
---|---|
org.opencontainers.image.authors | admin@minenet.at |
org.opencontainers.image.source | https://github.com/ich777/docker-infiniteremote-api |