Nice little directory browser :D

er something

helpimnotdrowning.net ed5f214b d08f01b1

verified
+43
+18
Dockerfile
··· 1 + FROM helpimnotdrowning/pode:2.12.1 2 + SHELL ["pwsh", "-c"] 3 + 4 + RUN apt-get update 5 + RUN apt-get install git -y 6 + 7 + RUN git clone https://github.com/helpimnotdrowning/Mizumiya --branch v0.2.0 /tmp/Mizumiya_repo 8 + RUN mkdir -p /usr/local/share/powershell/Modules/Mizumiya 9 + RUN cp -r /tmp/Mizumiya_repo/Mizumiya/* /usr/local/share/powershell/Modules/Mizumiya 10 + 11 + RUN Set-PSRepository -Name PSGallery -InstallationPolicy Trusted 12 + RUN Install-Module -Name PSParseHTML -RequiredVersion 2.0.2 13 + 14 + COPY . /app/Utatane/ 15 + 16 + EXPOSE 8081 17 + WORKDIR /app/Utatane 18 + CMD [ "pwsh", "-c", "./Server.ps1" ]
+25
README.md
··· 1 + # Utatane 2 + 3 + File index 4 + 5 + Exposes port 8080 6 + 7 + Build container with 8 + ```pwsh 9 + sudo docker build -t helpimnotdrowning/utatane . 10 + ``` 11 + 12 + Utatane requires my fork of Pode *built as* `helpimnotdrowning/pode:2.12.1`. You can do this with `Invoke-Build Pack -Version 2.12.1`, then `sudo docker build -t helpimnotdrowning/pode:2.12.1 .` 13 + 14 + Run with the following compose definition: 15 + ```yml 16 + services: 17 + # ... 18 + utatane: 19 + image: helpimnotdrowning/utatane 20 + container_name: utatane 21 + restart: unless-stopped 22 + ports: 23 + - '8080:8080' 24 + ``` 25 +