Prerequisites:¶
When you install existing roles in saltbox, some things get handled behind the scenes for you. Notably, this includes creating the subdomain[s] at cloudflare and creating the /opt/APPNAME
directory tree.
When you add a container manually as outlined on this page, neither of those things will be done for you, so prior to running the docker commands described below you will have to create the APPNAME.domain.tld
subdomain at cloudflare [or wherever your DNS is] and create the required /opt/APPNAME
directory tree.
The examples below are docker run
commands that you would execute in an SSH session on your server.
If you want to create a role file that you can install like the built-in applications, see here.
Format¶
docker run -d \ --name=APPNAME \ --restart=unless-stopped \ -e PGID=1000 -e PUID=1000 \ -v /opt/APPNAME:/CONFIG \ -v /etc/localtime:/etc/localtime:ro \ --network=saltbox \ --network-alias=APPNAME \ --label com.github.saltbox.saltbox_managed=true \ --label traefik.enable=true \ --label traefik.http.routers.APPNAME-http.entrypoints=web \ --label traefik.http.routers.APPNAME-http.middlewares=globalHeaders@file,redirect-to-https,gzip \ --label traefik.http.routers.APPNAME-http.rule=Host\(\`APPNAME.yourdomain.com\`\) \ --label traefik.http.routers.APPNAME-http.service=APPNAME \ --label traefik.http.routers.APPNAME.entrypoints=websecure \ --label traefik.http.routers.APPNAME.middlewares=globalHeaders@file,secureHeaders@file \ --label traefik.http.routers.APPNAME.rule=Host\(\`APPNAME.yourdomain.com\`\) \ --label traefik.http.routers.APPNAME.service=APPNAME \ --label traefik.http.routers.APPNAME.tls.certresolver=cfdns \ --label traefik.http.routers.APPNAME.tls.options=securetls@file \ --label traefik.http.services.APPNAME.loadbalancer.server.port=APPLICATION_PORT \ docker/image
Format (detailed)¶
Note: containers will not always use /config
, nor will they necessarily use everything shown here. The required volume maps and environment variables will vary by the docker image being used.
docker run -d \ --name APPNAME \ --restart=unless-stopped \ -e PGID=1000 -e PUID=1000 \ --network=saltbox \ --network-alias=APPNAME \ -p host_port1:container_misc_port1 \ -p host_port2:container_misc_port2 \ -v /opt/APPNAME/:/config \ -v /mnt/:/mnt/ \ --label com.github.saltbox.saltbox_managed=true \ --label traefik.enable=true \ --label traefik.http.routers.APPNAME-http.entrypoints=web \ --label traefik.http.routers.APPNAME-http.middlewares=globalHeaders@file,redirect-to-https,gzip \ --label traefik.http.routers.APPNAME-http.rule=Host\(\`APPNAME.yourdomain.com\`\) \ --label traefik.http.routers.APPNAME-http.service=APPNAME \ --label traefik.http.routers.APPNAME.entrypoints=websecure \ --label traefik.http.routers.APPNAME.middlewares=globalHeaders@file,secureHeaders@file \ --label traefik.http.routers.APPNAME.rule=Host\(\`APPNAME.yourdomain.com\`\) \ --label traefik.http.routers.APPNAME.service=APPNAME \ --label traefik.http.routers.APPNAME.tls.certresolver=cfdns \ --label traefik.http.routers.APPNAME.tls.options=securetls@file \ --label traefik.http.services.APPNAME.loadbalancer.server.port=APPLICATION_PORT \ docker-hub-user/repo-name
Examples¶
Tautulli listens on port 8181
docker run -d \ --name tautulli \ --restart=unless-stopped \ -e PGID=1000 -e PUID=1000 \ --network=saltbox \ --network-alias=tautulli \ -v /opt/tautulli/:/config \ -v /opt/tautulli/transcode:/transcode \ -v /mnt/:/mnt/ \ -v /etc/localtime:/etc/localtime:ro \ -v /opt/plex/Library/Application Support/Plex Media Server/Logs:/logs \ -v /opt:/opt \ --label com.github.saltbox.saltbox_managed=true \ --label traefik.enable=true \ --label traefik.http.routers.tautulli-http.entrypoints=web \ --label traefik.http.routers.tautulli-http.middlewares=globalHeaders@file,redirect-to-https,gzip \ --label traefik.http.routers.tautulli-http.rule=Host\(\`tautulli.yourdomain.com\`\) \ --label traefik.http.routers.tautulli-http.service=tautulli \ --label traefik.http.routers.tautulli.entrypoints=websecure \ --label traefik.http.routers.tautulli.middlewares=globalHeaders@file,secureHeaders@file \ --label traefik.http.routers.tautulli.rule=Host\(\`tautulli.yourdomain.com\`\) \ --label traefik.http.routers.tautulli.service=tautulli \ --label traefik.http.routers.tautulli.tls.certresolver=cfdns \ --label traefik.http.routers.tautulli.tls.options=securetls@file \ --label traefik.http.services.tautulli.loadbalancer.server.port=8181 \ linuxserver/tautulli
Speedtest listens on port 80, doesn't have a config dir
docker run -d \ --name=speedtest \ --restart=unless-stopped \ -e PGID=1000 -e PUID=1000 \ -v /opt/speedtest:/var/www/html \ --network=saltbox \ --network-alias=speedtest \ --label com.github.saltbox.saltbox_managed=true \ --label traefik.enable=true \ --label traefik.http.routers.speedtest-http.entrypoints=web \ --label traefik.http.routers.speedtest-http.middlewares=globalHeaders@file,redirect-to-https,gzip \ --label traefik.http.routers.speedtest-http.rule=Host\(\`speedtest.yourdomain.com\`\) \ --label traefik.http.routers.speedtest-http.service=speedtest \ --label traefik.http.routers.speedtest.entrypoints=websecure \ --label traefik.http.routers.speedtest.middlewares=globalHeaders@file,secureHeaders@file \ --label traefik.http.routers.speedtest.rule=Host\(\`speedtest.yourdomain.com\`\) \ --label traefik.http.routers.speedtest.service=speedtest \ --label traefik.http.routers.speedtest.tls.certresolver=cfdns \ --label traefik.http.routers.speedtest.tls.options=securetls@file \ --label traefik.http.services.speedtest.loadbalancer.server.port=80 \ satzisa/html5-speedtest
Plex-Patrol doesn't need to be behind the proxy, but you want it on the saltbox network and you want saltbox to take it down for backups.
docker run -d \ --name=plex_patrol \ --restart=unless-stopped \ -e PGID=1000 -e PUID=1000 \ -v /opt/plex_patrol:/config \ -v /opt/speedtest:/var/www/html \ --network=saltbox \ --network-alias=plex_patrol \ --label com.github.saltbox.saltbox_managed=true \ --label traefik.enable=false \ cloudb0x/plex_patrol:latest
Autoscan exposing an alternate port for perhaps a second instance, but only visible on the host [not outside]
docker run -d \ --name=autoscan \ --restart=unless-stopped \ -e PGID=1000 -e PUID=1000 \ -p 127.0.0.1:3033:3030 \ -v /etc/localtime:/etc/localtime:ro \ -v /opt/autoscan:/config \ -v /mnt:/mnt \ --network=saltbox \ --network-alias=autoscan \ --label com.github.saltbox.saltbox_managed=true \ --label traefik.enable=false \ cloudb0x/autoscan:master
Details¶
Notes¶
-
Replace all
<tags>
with your info. -
All
<container_*>
items are specified by the Docker container. -
Ideally, you want all
<name>
items to have the same name. -
Pick docker images that allow you to specify the PUID/PGID.
-
You can break a command into multiple lines with a backslash (
\
) at the end of all the lines except the last one.
Basics¶
-
--name=<name>
-
--restart=unless-stopped
-
To have it startup automatically, unless the container was previously stopped.
-
-v /etc/localtime:/etc/localtime:ro
-
To set the docker container's timezone to your host timezone.
-
-e PUID=<your_user_ID> -e PGID=<your_group_ID>
-
Replace
<user>
and<group>
to match yours (see here). -
--label com.github.saltbox.saltbox_managed=true
-
Is used to determine whether the container is shut down or not during Saltbox backup and other tasks. If you want this container to not be shut down, leave the label out or set it to
false
. -
If you do decide leave this out or set this to
false
, it will probably be a good idea to store the config files at another location other than/opt
as a running container could cause issues during Saltbox Backup.
Mount Paths¶
Mount paths are in the format of path/on/host:path/within/container
. You may change the path on host (left side), but not the path set for the container, internally (right side).
-
-v /opt/<name>:<container_config_path>
-
This is where your config files will go
-
You will need to:
-
Create the folder:
mkdir /opt/<name>
-
Set ownership:
sudo chown -R <user>:<group> /opt/<name>
- Replace
<user>
and<group>
to match yours' (see here)
- Replace
-
Set permissions:
sudo chmod -R ugo+X /opt<name>
-
-
-v /mnt/local/downloads/<name>:/downloads/<name>
-
Only required if your Docker app needs a path for downloads.
-
You will need to set
/downloads/<name>
as the downloads path in your app. -
This path will be accessible to Sonarr and Radarr.
-
You will need to:
-
Create the folder:
mkdir /mnt/local/downloads/<name>
-
Set ownership:
sudo chown -R <user>:<group> /mnt/local/downloads/<name>
- Replace
<user>
and<group>
to match yours' (see here)
- Replace
-
Set permissions:
sudo chmod -R ugo+X /mnt/local/downloads/<name>
-
Network¶
Note: These are important, but leave them out if your docker run command requires --net=host
.
-
--network=saltbox
-
--network-alias=<name>
(aliases are shortcuts to communicate across dockers)
Ports¶
Ports are in the format of host_port:container_port
.
-
For the main, web admin/page port (e.g. 32400 in Plex):
-
You do not need to specify this port with
-p
. Since this port will not be accessible over the net or from the host. Instead, Nginx-Proxy will redirect the subdomain to it. -
If you do want the port accessible from the host (but not from the net), simply add
127.0.0.1:
to it and specify it via:
-p 127.0.0.1:<host_port>:<container_webadmin_port>
If you expose ports to the host like this, make sure they don't conflict with another one on that host.
-
-
For all other ports:
-
-p <host_port>:<container_other_ports>
-
These are accessible from the net.
-
-
If this is a home install, you will probably need to forward the port to the cloudbox machine.
Traefik Proxy¶
--label traefik.enable=true
--label traefik.http.routers.<name>-http.entrypoints=web \
--label traefik.http.routers.<name>-http.middlewares=globalHeaders@file,redirect-to-https,gzip \
--label traefik.http.routers.<name>-http.rule=Host\(\`<name>.yourdomain.com\`\) \
--label traefik.http.routers.<name>-http.service=<name> \
--label traefik.http.routers.<name>.entrypoints=websecure \
--label traefik.http.routers.<name>.middlewares=globalHeaders@file,secureHeaders@file \
--label traefik.http.routers.<name>.rule=Host\(\`<name>.yourdomain.com\`\) \
--label traefik.http.routers.<name>.service=<name> \
--label traefik.http.routers.<name>.tls.certresolver=cfdns \
--label traefik.http.routers.<name>.tls.options=securetls@file \
--label traefik.http.services.<name>.loadbalancer.server.port=<container_webpage_port> # (1)
- The port for the web admin page for the container.
You'll need to add the subdomain manually at your DNS provider if you're not using wild-card DNS.