13 lines
263 B
Docker
13 lines
263 B
Docker
FROM mcr.microsoft.com/powershell
|
|
|
|
USER 1000:1000
|
|
|
|
ENV SCHEDULE=60
|
|
ENV GLUETUNFORWARDEDPORTFILE="/tmp/forwarded_port"
|
|
|
|
VOLUME /tmp
|
|
|
|
WORKDIR /data
|
|
COPY ["Start-QBTGluetunPortMgr.ps1", "/data/"]
|
|
|
|
ENTRYPOINT ["pwsh", "-Command", "/data/Start-QBTGluetunPortMgr.ps1"] |