]> git.parisson.com Git - telemeta_mcm.git/commitdiff
Add docker-compose support
authorThomas Fillon <thomas@parisson.com>
Fri, 22 Jul 2016 22:15:23 +0000 (00:15 +0200)
committerThomas Fillon <thomas@parisson.com>
Fri, 22 Jul 2016 22:15:23 +0000 (00:15 +0200)
conda-environment.yml [new file with mode: 0644]
docker-compose.yml [new file with mode: 0644]

diff --git a/conda-environment.yml b/conda-environment.yml
new file mode 100644 (file)
index 0000000..eca81f8
--- /dev/null
@@ -0,0 +1,14 @@
+name: MCM
+dependencies:
+- django=1.9.5=py27_0
+- openssl=1.0.2h=1
+- pip=8.1.2=py27_0
+- python=2.7.12=1
+- readline=6.2=2
+- setuptools=23.0.0=py27_0
+- sqlite=3.13.0=0
+- tk=8.5.18=0
+- wheel=0.29.0=py27_0
+- zlib=1.2.8=3
+prefix: /opt/conda/envs/MCM
+
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644 (file)
index 0000000..374647c
--- /dev/null
@@ -0,0 +1,10 @@
+version: '2'
+services:
+  app:
+    build: .
+    command: python manage.py runserver 0.0.0.0:8000
+    volumes:
+      - .:/srv/src/app/
+    ports:
+      - "8005:8000"
+