11 lines
246 B
Docker
11 lines
246 B
Docker
FROM mcr.microsoft.com/powershell
|
|
|
|
ENV SCHEDULE=60
|
|
ENV GLUETUNFORWARDEDPORTFILE="/tmp/forwarded_port"
|
|
|
|
VOLUME /tmp
|
|
|
|
WORKDIR /data
|
|
ADD ["Start-QBTGluetunPortMgr.ps1", "/data/"]
|
|
|
|
ENTRYPOINT ["pwsh", "-Command", "/data/Start-QBTGluetunPortMgr.ps1"] |