From 5242a81f47756d3bf9cf405d8a92290e70af87ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Sun, 1 Nov 2015 19:42:58 +0100 Subject: [PATCH 1/7] --- Dockerfile.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Dockerfile.txt diff --git a/Dockerfile.txt b/Dockerfile.txt new file mode 100644 index 0000000..fbd5b4c --- /dev/null +++ b/Dockerfile.txt @@ -0,0 +1,4 @@ +from nginx + +EXPOSE 80 +ADD . /usr/share/nginx/html/ From 062346f70632f61f96399ca6d240ddda29ef111e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Sun, 1 Nov 2015 19:49:35 +0100 Subject: [PATCH 2/7] --- Dockerfile.txt => Dockerfile | 0 README.md | 15 +++++++++++++++ 2 files changed, 15 insertions(+) rename Dockerfile.txt => Dockerfile (100%) create mode 100644 README.md diff --git a/Dockerfile.txt b/Dockerfile similarity index 100% rename from Dockerfile.txt rename to Dockerfile diff --git a/README.md b/README.md new file mode 100644 index 0000000..5896a65 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +* Add the Dockerfile to the root of your static files +* Init the git repository and/or add the remote of your dokku app + git remote add dokku git@yourdomain.com:appname +* Commit all your changes and the repository + git commit -am Pushing to dokku + git push dokku master +* Optionally, add any extra domains with the domains plugin: + ssh dokku@yourdomain.com domains:add appname domain.com + + +Find all the available commands and help: + + ssh dokku@yourdomain.com + + \ No newline at end of file From 891df1b0332c111b39ae021a6816762e5fb38ee4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Sun, 1 Nov 2015 19:49:57 +0100 Subject: [PATCH 3/7] --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 5896a65..86bceb9 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,15 @@ * Add the Dockerfile to the root of your static files * Init the git repository and/or add the remote of your dokku app + git remote add dokku git@yourdomain.com:appname + * Commit all your changes and the repository + git commit -am Pushing to dokku git push dokku master + * Optionally, add any extra domains with the domains plugin: + ssh dokku@yourdomain.com domains:add appname domain.com From 98cfb52307df8f6be71b67c67704f26e49777aff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Sun, 1 Nov 2015 19:50:54 +0100 Subject: [PATCH 4/7] --- README.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 86bceb9..cfe983b 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,18 @@ * Add the Dockerfile to the root of your static files -* Init the git repository and/or add the remote of your dokku app - +* Init the git repository and/or add the remote of your dokku appm git remote add dokku git@yourdomain.com:appname * Commit all your changes and the repository - - git commit -am Pushing to dokku +``` it commit -am Pushing to dokku git push dokku master - +``` * Optionally, add any extra domains with the domains plugin: - +``` ssh dokku@yourdomain.com domains:add appname domain.com - +``` Find all the available commands and help: - +``` ssh dokku@yourdomain.com - +``` \ No newline at end of file From c97c35d1d4a04353f14fa83f26d83c132e2a8ed0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Sun, 1 Nov 2015 19:51:52 +0100 Subject: [PATCH 5/7] --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cfe983b..3fcb862 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,16 @@ * Add the Dockerfile to the root of your static files -* Init the git repository and/or add the remote of your dokku appm - git remote add dokku git@yourdomain.com:appname - +* Init the git repository and/or add the remote of your dokku app: +``` +git remote add dokku git@yourdomain.com:appname +``` * Commit all your changes and the repository -``` it commit -am Pushing to dokku - git push dokku master +``` +git commit -am Pushing to dokku +git push dokku master ``` * Optionally, add any extra domains with the domains plugin: ``` - ssh dokku@yourdomain.com domains:add appname domain.com +ssh dokku@yourdomain.com domains:add appname domain.com ``` Find all the available commands and help: From ed0f4b9ad9b96f82e7d11a6948315c709e380154 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Sun, 1 Nov 2015 19:52:04 +0100 Subject: [PATCH 6/7] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3fcb862..dd696e8 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,6 @@ ssh dokku@yourdomain.com domains:add appname domain.com Find all the available commands and help: ``` - ssh dokku@yourdomain.com +ssh dokku@yourdomain.com ``` \ No newline at end of file From 0026073a1b8908b7ad8991610d2530284b331c4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Sun, 1 Nov 2015 19:52:23 +0100 Subject: [PATCH 7/7] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fbd5b4c..203a7bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -from nginx +FROM nginx EXPOSE 80 ADD . /usr/share/nginx/html/