Portainer

https://docs.portainer.io/start/install-ce/server/docker/linux docker run -d -p 8000:8000 -p 9443:9443 --name portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest

May 7, 2024 · 1 min · 16 words

Nextcloud

This does NOT include the database that you will need. docker run -d \ --name=nextcloud \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Etc/UTC \ -p 443:443 \ -v /home/nextcloud/config:/config \ -v /home/nextcloud/data:/data \ --restart always \ lscr.io/linuxserver/nextcloud:latest

May 3, 2024 · 1 min · 38 words