From bf067d1c7da65cd0c25fecceaf0d9c3e39c7b387 Mon Sep 17 00:00:00 2001 From: Jonnie Spratley Date: Wed, 18 Feb 2015 17:57:51 -0800 Subject: [PATCH] added docker files --- .dockerignore | 16 ++++ .gitignore | 5 -- Dockerfile | 22 +++++ app/views/main.html | 1 - fig.yml | 0 www/404.html | 157 ++++++++++++++++++++++++++++++++ www/index.html | 160 +++++++++++++++++++++++++++++++++ www/views/_aside.html | 13 +++ www/views/_content.html | 12 +++ www/views/_footer.html | 11 +++ www/views/_header.html | 58 ++++++++++++ www/views/_navbar.html | 74 +++++++++++++++ www/views/_sidebar.html | 43 +++++++++ www/views/admin.html | 82 +++++++++++++++++ www/views/dashboard.html | 84 +++++++++++++++++ www/views/docs.html | 1 + www/views/forgot-password.html | 22 +++++ www/views/help.html | 37 ++++++++ www/views/index.html | 70 +++++++++++++++ www/views/login.html | 31 +++++++ www/views/main.html | 43 +++++++++ www/views/media.html | 73 +++++++++++++++ www/views/pages.html | 56 ++++++++++++ www/views/plugins.html | 93 +++++++++++++++++++ www/views/profile.html | 36 ++++++++ www/views/register.html | 36 ++++++++ www/views/reset-password.html | 20 +++++ www/views/settings.html | 100 +++++++++++++++++++++ www/views/themes.html | 32 +++++++ www/views/users.html | 151 +++++++++++++++++++++++++++++++ www/views/widgets.html | 57 ++++++++++++ 31 files changed, 1590 insertions(+), 6 deletions(-) create mode 100644 .dockerignore create mode 100644 Dockerfile create mode 100644 fig.yml create mode 100644 www/404.html create mode 100644 www/index.html create mode 100644 www/views/_aside.html create mode 100644 www/views/_content.html create mode 100644 www/views/_footer.html create mode 100644 www/views/_header.html create mode 100644 www/views/_navbar.html create mode 100644 www/views/_sidebar.html create mode 100644 www/views/admin.html create mode 100644 www/views/dashboard.html create mode 100644 www/views/docs.html create mode 100644 www/views/forgot-password.html create mode 100644 www/views/help.html create mode 100644 www/views/index.html create mode 100644 www/views/login.html create mode 100644 www/views/main.html create mode 100644 www/views/media.html create mode 100644 www/views/pages.html create mode 100644 www/views/plugins.html create mode 100644 www/views/profile.html create mode 100644 www/views/register.html create mode 100644 www/views/reset-password.html create mode 100644 www/views/settings.html create mode 100644 www/views/themes.html create mode 100644 www/views/users.html create mode 100644 www/views/widgets.html diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..500fac4 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,16 @@ +.git +.tmp +.idea +.grunt +.sass-cache +.project +.c9 +.DS_Store +atlassian-ide-plugin.xml +app/bower_components +coverage +db +coverage +docs +dist +node_modules \ No newline at end of file diff --git a/.gitignore b/.gitignore index 3dbb9ef..d1a8e31 100755 --- a/.gitignore +++ b/.gitignore @@ -6,15 +6,10 @@ .project .c9 .DS_Store - - atlassian-ide-plugin.xml - - app/bower_components coverage db -www coverage docs dist diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..75e5980 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,22 @@ +### +# docker-angular-cms +# This is the docker container for angular-cms +### +FROM ubuntu:14.04 +MAINTAINER Jonnie Spratley + +WORKDIR . +COPY . /angular-cms + +RUN apt-get update && apt-get install -y \ + git \ + npm \ + nodejs + +RUN ln -s /usr/bin/nodejs /usr/local/bin/node + +RUN cd /angular-cms \ + npm install + +EXPOSE 1339 +CMD ["npm", "start"] \ No newline at end of file diff --git a/app/views/main.html b/app/views/main.html index 2331017..ff05022 100755 --- a/app/views/main.html +++ b/app/views/main.html @@ -9,7 +9,6 @@

{{App.feature.body}} -