aboutsummaryrefslogtreecommitdiffstats
path: root/devops/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'devops/docker-compose.yml')
-rw-r--r--devops/docker-compose.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/devops/docker-compose.yml b/devops/docker-compose.yml
new file mode 100644
index 0000000..b17a98b
--- /dev/null
+++ b/devops/docker-compose.yml
@@ -0,0 +1,16 @@
+chameleon:
+ build: ./chameleon
+ container_name: chameleon
+ environment:
+ - CONFIG_LOCATION=/opt/chameleon/chameleon-config.edn
+ volumes:
+ - ./chameleon-config.edn:/opt/chameleon/chameleon-config.edn
+
+nginx:
+ build: ./nginx
+ container_name: nginx
+ links:
+ - chameleon
+ ports:
+ - 80:80
+ - 443:443