Rancher is a complete, open source platform for deploying and managing containers in production. It includes commercially-supported distributions of Kubernetes, Mesos, and Docker Swarm, making it easy to run containerized applications on any infrastructure. {{ :rancher_1.0_demo_on_vimeo.mp4 |}} Documentos iniciales en: http://docs.rancher.com/rancher/v1.2/en/quick-start-guide/ Instalar el sistema operativo limpio. Se recomienda un Ubuntu pero puede ser cualquier sistema que soporte docker segun la ayuda. Instalar docker según la ayuda aquí: http://redtic.uclv.cu/dokuwiki/dockerinstall Si no se tiene conexion directa con Internet o a traves de un proxy se puede usar el servicio de caché del Nexus de la UCLV como se explica aquí: http://redtic.uclv.cu/dokuwiki/dockernexus Instalar racher-server docker run -d --restart=unless-stopped -p 8080:8080 rancher/server o docker run -d -e http_proxy="http://10.12.1.7:3128" -e https_proxy="https://10.12.1.7:3130" \ -e no_proxy="localhost,127.0.0.1,docker-registry.uclv.edu.cu" \ -e NO_PROXY="localhost,127.0.0.1,docker-registry.uclv.edu.cu" \ --restart=unless-stopped -p 8080:8080 rancher/server # Tail the logs to show Rancher #docker logs -f