···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+