Skip to content

Instantly share code, notes, and snippets.

@bartprokop
Created July 21, 2025 19:53
Show Gist options
  • Save bartprokop/09e72cd847acf69d89c093730b6f11c8 to your computer and use it in GitHub Desktop.
Save bartprokop/09e72cd847acf69d89c093730b6f11c8 to your computer and use it in GitHub Desktop.

Portainer

ArchLinux: https://archlinux.org/ Main documentaion: https://docs.portainer.io/start/install-ce

Instead of creating Docker volume, just use mount:

# One time setup
docker volume create portainer_data

docker run -d --network=ipvlan17 --ip=192.168.17.64 --name portainer -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:lts

docker stop portainer
docker start portainer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment