repositories
/
ssproject1617.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8733384
)
Add Dockerfile
author
Mart Lubbers
<mart@martlubbers.net>
Mon, 10 Oct 2016 17:05:49 +0000
(19:05 +0200)
committer
Mart Lubbers
<mart@martlubbers.net>
Mon, 10 Oct 2016 17:05:49 +0000
(19:05 +0200)
Dockerfile
[new file with mode: 0644]
patch
|
blob
diff --git a/Dockerfile
b/Dockerfile
new file mode 100644
(file)
index 0000000..
9888d25
--- /dev/null
+++ b/
Dockerfile
@@ -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"]