Nice little directory browser :D
1# Utatane
2
3File index
4
5Exposes port 8080
6
7Build container with
8```pwsh
9sudo docker build -t helpimnotdrowning/utatane .
10```
11
12Utatane 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
14Run with the following compose definition:
15```yml
16services:
17 # ...
18 utatane:
19 image: helpimnotdrowning/utatane
20 container_name: utatane
21 restart: unless-stopped
22 ports:
23 - '8080:8080'
24```
25