This link will get you going with SSH keys and github for pushing updates
If you get the error installing containers from Docker that it can't srart containers, see this page
Suggested config, but until I can work out where the config file goes I removed the -v line
docker run -d -p 8080:80 -v /home/dashy/my-conf.yml:/app/public/conf.yml --name my-dashboard --restart=always lissy93/dashy:latest
StirlingPDF Full instal script
A web based tool that lets you convert and much more those annoying as hell documents so you can fill them in, add images of signatures etc.
Create /opt/stirlingpdf
docker run -d \
-p 8080:8080 \
-e PUID=1002 \
-e PGID=1002 \
-v /opt/stirlingpdf/trainingData:/usr/share/tessdata \
-v /opt/stirlingpdf/extraConfigs:/configs \
-v /opt/stirlingpdf/logs:/logs \
-e DOCKER_ENABLE_SECURITY=false \
-e INSTALL_BOOK_AND_ADVANCED_HTML_OPS=false \
-e LANGS=en_GB \
--name stirling-pdf \
frooodle/s-pdf:latest
Then just go to port 8080 on the server.
Audiobookshelf home AudioBookshelf install script docker run -d --restart=always -p 13378:80 -v /media2/audiobookshelf/config:/config -v /media2/audiobookshelf/metadata:/metadata -v /media2/audiobookshelf/audiobooks:/audiobooks -v /media2/audiobookshelf/podcasts:/podcasts --name audiobookshelf ghcr.io/advplyr/audiobookshelf
Music Assistant install script
sudo docker run -d --network host --privileged
-v /mediaserver:/data ghcr.io/music-assistant/server
Runs on http://envy:8095/#/home
docker run -d --name jellyfin --user uid:gid --net=host --volume /media/jellyfin/config:/config --volume /media/jellyfin/cache:/cache --mount type=bind,source=/media/plex,target=/media --restart=unless-stopped jellyfin/jellyfin
sudo docker volume create portainer_data
sudo docker run -d -p 8000:8000 -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce
sudo docker ps
sudo docker stop portainer
docker rm the container from the PS command
sudo docker images
sudo docker rmi -- The image number of the portainer image
Do the docker run from above
First you need to stop Ubuntu's DNS provider
I set it to use 8.8.8.8 for DNS provider This video was really helpful
There is a script just called "pihole" in this repo, it's functional, if you already have the container it will fail, so remove it first. This was the image I used, and there are good directions here
- create a directory, I used /home/pi-hole
- See the shell script in this directory, pihole.
- Copy it to that directory, run it from there.
- docker pull pihole/pihole
-
First you need to make /home/ha
mkdir /home/ha
-
Docker run line for my config, paths are specific
docker run -d --name="home-assistant" --restart always \
-v /home/ha:/config -v /var/run/docker.sock:/var/run/docker.sock
-v /etc/localtime:/etc/localtime:ro -v /media/music:/media
--net=host homeassistant/home-assistant
sudo docker ps
sudo docker stop home-assistant
sudo docker rm home-assistant
sudo docker images
sudo docker rmi -- The image number of the Home-Assistant image
Repeat the Docker run command above
I have not made this work yet, but still want to
docker run --name some-mysql -e MYSQL_ROOT_PASSWORD=my-secret-pw -d mysql:tag
sudo mkdir /var/NCVoterDB
sudo docker run -d -p 3306 --name NCVoterDB --restart always -v /var/NCVoterDB -v /etc/localtime:/etc/localtime:ro mysql/mysql
-
Create the directories
mkdir -p ~/media/plex/{config,data}
-
Then the docker run
docker run -d --name=plex --net=host -e PUID=1001 -e PGID=1001 -e TZ=Etc/UTC -e VERSION=docker -e PLEX_CLAIM= `#optional` -v /media2/plex/config:/config -v /media2/plex/music:/music -v /media2/MusicVideos:/MusicVideos -v /media2/Movies:/movies -v /media2/TV:/TV --restart unless-stopped lscr.io/linuxserver/plex:latest
sudo mkdir /var/NCVoterDB
sudo docker run -d -p 3306 --name NCVoterDB --restart always -v /var/NCVoterDB -v /etc/localtime:/etc/localtime:ro mysql/mysql
docker pull grafana/grafana
docker run -d --name=grafana --restart=unless-stopped -v /etc/localtime:/etc/localtime:ro -v /home/ha:/hadata -p 3000:3000 grafana/grafana
This confguration also has Home Assistant data mounted for the log files
docker run -it -p 1880:1880 -v myNodeREDdata:/data/nodered --name mynodered nodered/node-red
docker run -dit --name my-apache-app -p 8080:80 -v "$PWD":/usr/local/apache2/htdocs/ httpd:2.4