···11+# Utatane
22+33+File index
44+55+Exposes port 8080
66+77+Build container with
88+```pwsh
99+sudo docker build -t helpimnotdrowning/utatane .
1010+```
1111+1212+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 .`
1313+1414+Run with the following compose definition:
1515+```yml
1616+services:
1717+ # ...
1818+ utatane:
1919+ image: helpimnotdrowning/utatane
2020+ container_name: utatane
2121+ restart: unless-stopped
2222+ ports:
2323+ - '8080:8080'
2424+```
2525+