- Keep docker images updated
- https://github.com/pyouroboros/ouroboros
- https://hub.docker.com/r/pyouroboros/ouroboros
- Log viewer for docker containers
- https://dozzle.dev/
- https://github.com/amir20/dozzle
- https://hub.docker.com/r/amir20/dozzle/
- A container management UI with a focus on templates and 1-click deployments.
- https://yacht.sh/
- a modern server dashboard
- https://getdashdot.com/
- https://github.com/MauriceNino/dashdot
- A self-hosted monitoring tool similar to "Uptime Robot"
- https://uptime.kuma.pet/
- https://github.com/louislam/uptime-kuma
- https://hub.docker.com/r/louislam/uptime-kuma
- Expose your services easily and securely
- https://nginxproxymanager.com/
- https://github.com/NginxProxyManager/nginx-proxy-manager
- A modern and lightweight homepage for your server
- https://homarr.dev/
- https://github.com/ajnart/homarr/
- Used speed test cli to test speed, stores data in influxdb timeseries, displays it Grafana
- Your application observability
- https://grafana.com/
- https://hub.docker.com/r/grafana/grafana
- InfluxDB. - It's About Time.
- https://www.influxdata.com/
- https://hub.docker.com/_/influxdb
- Internet connection measurement for developers
- https://www.speedtest.net/apps/cli
- https://github.com/frdmn/docker-speedtest-grafana
- HomeKit support for the impatient.
- https://homebridge.io/
- https://github.com/oznu/docker-homebridge
- Poste.io ~ complete mail server
- https://poste.io/
- https://hub.docker.com/r/analogic/poste.io/
- Does not work on RPI/ARM
- Radarr is a movie collection manager for Usenet and BitTorrent users.
- https://radarr.video/
- https://hub.docker.com/r/linuxserver/radarr
- Bazarr is a companion application to Sonarr and Radarr that manages and downloads subtitles based on your requirements.
- https://www.bazarr.media/
- https://github.com/morpheus65535/bazarr
- https://hub.docker.com/r/linuxserver/bazarr
- Setup a SSH Configuration: https://www.jetbrains.com/help/idea/create-ssh-configurations.html
- On the remote where docker is running:
- Run to edit the file:
sudo nano /etc/default/docker
- Using the
-H
flag in theDOCKER_OPTS
variable in the/etc/default/docker
file.
DOCKER_OPTS="-H tcp://0.0.0.0:80"
- Run
sudo usermod -aG docker $USER
- Run to edit the file:
- Explanations:
usermod
: This is the command for modifying user accounts.-a
: This flag tellsusermod
to add the specified group to the user's existing groups (instead of replacing them).-G docker
: This specifies the name of the group to add the user to, which is "docker" in this case.$USER
: This is a shell variable that expands to the username of the currently logged-in user. The command is replacing$USER
with the actual username of the user account you want to modify.- To list all available groups:
sudo getent group
- To list groups associated to the current user:
groups $USER