Add Dockerfile
authorMart Lubbers <mart@martlubbers.net>
Mon, 10 Oct 2016 17:05:49 +0000 (19:05 +0200)
committerMart Lubbers <mart@martlubbers.net>
Mon, 10 Oct 2016 17:05:49 +0000 (19:05 +0200)
Dockerfile [new file with mode: 0644]

diff --git a/Dockerfile b/Dockerfile
new file mode 100644 (file)
index 0000000..9888d25
--- /dev/null
@@ -0,0 +1,9 @@
+# Bouw met: docker build -t ssapache .
+# Run met: docker run --name ssapache -d -p 80:80 -p 3306:3306 ssapache
+# MySQL inloggegevens zijn root zonder wachtwoord
+FROM tutum/lamp:latest
+RUN rm -fr /app
+COPY ./testcms-final-anon /app
+RUN chown -R www-data:www-data /app
+EXPOSE 80 3306
+CMD ["/run.sh"]