diff --git a/Deployment.md b/Deployment.md index 6fafd60..3ad2ab0 100644 --- a/Deployment.md +++ b/Deployment.md @@ -60,4 +60,18 @@ $ docker run -d -p 9000:9000 portainer/portainer -v /path/to/certs:/certs -H tcp ## Without Docker -TODO. \ No newline at end of file +Portainer binaries are available on each release page: https://github.com/portainer/portainer/releases + +Download and extract the binary to a location on disk: + +```shell +$ cd /opt +$ wget https://github.com/portainer/portainer/archive/1.8.1.tar.gz +$ tar xvpfz 1.8.1.tar.gz -C portainer +``` + +Then just use the `portainer` binary as you would use CLI flags with Docker. + +```shell +$ /opt/portainer/portainer -H tcp://DOCKER_HOST:DOCKER_PORT +```