Block a user
infiniteremote-api (latest)
Published 2024-06-06 11:49:38 +02:00 by ich777
Installation
docker pull git.minenet.at/ich777/infiniteremote-api:latest
sha256:6ee217dfed90b7799bfda0e5bb38c8a221295c259b435f62f1091bed3a4e05ca
Image Layers
ADD file:5aaace706aa00ff97d243daa2c29f5de88f124e1b97c570634f16eef90783286 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 |