2
0
Fork 0

update: Dockerfile - remove unneeded ''s

This commit is contained in:
soxfor 2023-03-20 02:23:34 +00:00
parent 103b4d5e64
commit ca1bcb994c
1 changed files with 10 additions and 10 deletions

View File

@ -15,7 +15,7 @@ FROM ubuntu:jammy
LABEL org.opencontainers.image.source="https://github.com/soxfor/qbittorrent-natmap"
LABEL org.opencontainers.image.base.name="ubuntu:jammy"
LABEL description="Map port via NAT-PMP and update qBittorrent configuration"
LABEL version="1.0.2"
LABEL version="1.0.3"
ARG DEBIAN_FRONTEND=noninteractive
@ -24,15 +24,15 @@ RUN apt install --no-install-suggests --no-install-recommends -y natpmpc curl bc
RUN rm -rf /var/lib/apt/lists/* /var/cache/apt/*
RUN apt clean
ENV QBITTORRENT_SERVER=''
ENV QBITTORRENT_PORT='8080'
ENV QBITTORRENT_USER='admin'
ENV QBITTORRENT_PASS='adminadmin'
ENV VPN_GATEWAY=''
ENV VPN_CT_NAME='gluetun'
ENV VPN_IF_NAME='tun0'
ENV CHECK_INTERVAL='300'
ENV NAT_LEASE_LIFETIME='300'
ENV QBITTORRENT_SERVER=
ENV QBITTORRENT_PORT=8080
ENV QBITTORRENT_USER=admin
ENV QBITTORRENT_PASS=adminadmin
ENV VPN_GATEWAY=
ENV VPN_CT_NAME=gluetun
ENV VPN_IF_NAME=tun0
ENV CHECK_INTERVAL=300
ENV NAT_LEASE_LIFETIME=300
COPY --from=docker-cli /usr/bin/docker /usr/bin/docker
COPY data/start.sh /start.sh