# Pulling the docker containers, starting them and manually installing Xibo

**URL:** https://community.xibo.org.uk/t/pulling-the-docker-containers-starting-them-and-manually-installing-xibo/16314
**Category:** Get Help
**Created:** [October 26, 2018, 6:00am UTC](https://community.xibo.org.uk/t/pulling-the-docker-containers-starting-them-and-manually-installing-xibo/16314 "2018-10-26T06:00:32Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![alex](https://community.xibo.org.uk/user_avatar/community.xibo.org.uk/alex/32/5782_2.png) [@alex](https://community.xibo.org.uk/u/alex)
#### Post date: [October 26, 2018, 7:36am UTC](https://community.xibo.org.uk/t/pulling-the-docker-containers-starting-them-and-manually-installing-xibo/16314/2 "2018-10-26T07:36:21Z")

</div>

You certainly can transfer Docker images and load them in to an offline server.

The instructions to do so are here:

> [@ERROR: Get https://registry-1.docker.io/v2/](https://community.xibo.org.uk/t/error-get-https-registry-1-docker-io-v2/9618/6):
>
> If you can’t work around the proxy issues, you can transfer the images out of band. So on a machine without proxy, run the following: docker pull xibosignage/xibo-xmr:release\_1.8.1 docker pull xibosignage/xibo-cms:release\_1.8.1 docker pull mysql:5.6 docker save xibosignage/xibo-xmr:release\_1.8.1 \> xmr.tar.gz docker save xibosignage/xibo-cms:release\_1.8.1 \> cms.tar.gz docker save mysql:5.6 \> mysql.tar.gz Copy those three tar.gz files over to the production box, then run docker load -i xmr.tar…

Note however that the naming convention for the images changed since that post was made, so for the latest images, you’d want to run the following on a machine that can connect to Docker Hub:

```
docker pull xibosignage/xibo-xmr:release-0.7
docker pull xibosignage/xibo-cms:release-1.8.11
docker pull mysql:5.6

docker save xibosignage/xibo-xmr:release-0.7 > xmr.tar.gz
docker save xibosignage/xibo-cms:release-1.8.11 > cms.tar.gz
docker save mysql:5.6 > mysql.tar.gz

```

Then transfer the tar.gz files to your server and load them per the notes above:

```
docker load -i xmr.tar.gz
docker load -i cms.tar.gz
docker load -i mysql.tar.gz

```

Once loaded, the containers will “up” without needing to download.

---

_[View the full topic](https://community.xibo.org.uk/t/pulling-the-docker-containers-starting-them-and-manually-installing-xibo/16314)._
