Setting up TrueCommand in TrueNAS SCALE Nightly

ornias

Wizard
Joined
Mar 6, 2020
Messages
1,458
As TrueNAS SCALE nightly is getting more and more integration intro TrueCommand, some of us might wonder how to setup TrueCommand on SCALE itself.
(considering it already includes docker)

Notes:
- I'm assuming a pool called "tank", please change "tank" into the name of your pool.
- This works on nightly as of 06-09-2020, as with all nightly stuff: Things change.

Code:
mkdir -p /mnt/tank/dockerdata/truecommand
service docker start
docker run --detach -v “/mnt/tank/dockerdata/truecommand:/data” -p 8080:80 -p 8443:443 ixsystems/truecommand:latest


This would create a TrueCommand instance on hostport 8080 and 8443(http and https respectively) and thus give you the option to test SCALE+TrueCommand with just 3 copy pasta's after installing TrueNAS SCALE :)

Same methode could be used to setup rancher for example, but according to the currently submitted k8s api changes, it would not work nicely to create a cluster in rancher already on your SCALE host.
 
Last edited:
Top