From 6f9541cb0acadc9215de2e915586a6fcf74a1911 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ariel=20Nu=C3=B1ez?= Date: Mon, 22 Aug 2016 09:51:01 -0500 Subject: [PATCH] Updated readme for docker --- README | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/README b/README index 89c17e30cfe..791eab427f8 100644 --- a/README +++ b/README @@ -32,18 +32,27 @@ Docker Usage If you want to use Docker you can now:: # build the docker container - docker build -t geonode . + docker-compose build # run the docker container - docker run -d -p 8111:8000 -p 8181:8080 geonode + docker-compose up -Or if you use fig:: + # turn it off + docker-compose down + +Or if you want to use the provided Makefile:: # build the container - fig build + make build # run the container - fig up + make up + + # create database + make sync + + # pull latest images + make pull openSUSE --------