SOLVED How to enter application name

Jethro

Dabbler
Joined
Aug 7, 2022
Messages
12
I know this is a knube question.

I am installing Minio on TrueNAS SCALE. This is the first app install for me. It asks for an application name, and it seems to want it a certain way:

Screenshot from 2022-08-11 23-20-05.png


I have no idea what this is trying to say. It isn't satisfied with Minio or minio.

Thanks for your help.
 

NugentS

MVP
Joined
Apr 16, 2020
Messages
2,947
"minio" should work.
just copy the container image name from above and it should just work

1660289017634.png
 

Heavy

Explorer
Joined
Aug 12, 2021
Messages
57
^[a-z0-9] (-a-z0-9]*[a-z0-9)?S'

Is a regex pattern, it's basically saying:
- Cannot start with anything other than a lowercase letter, or a number (although this will soon change to just a lowercase letter in the next update)
- Cannot have any special characters besides a hyphen -
- Cannot have an uppercase letter anywhere
- Cannot end with anything other than a lowercase letter, or number

Names that would work:
j-a-c-k-e-t-t
jackett123
jackett-123

Names that wouldn't:
JACKETT
J-a-c-k-e-t-t
Jackett
1jackett
jack ett
jack_ett
 
Top