about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Karl <akarl@darknebu.la>2019-10-10 22:25:09 +0200
committerAlexander Karl <akarl@darknebu.la>2019-10-10 22:25:09 +0200
commited60471af6f0ff159b6719be8547d23842a78e27 (patch)
tree5177903f78c03ff55e50ae9b84d703b69bae0fd8
parent3b8689fff9dba4b39df54181726a8b34161d40e7 (diff)
add example docker-compose
-rw-r--r--docker-compose.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..4dc0ffa
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,14 @@
+version: '3'
+
+services: 
+  static_files:
+    image: registry.darknebu.la/circus/static
+    environment: 
+      - "dir=/content"
+      - "port=8080"
+      - "subpath=fump"
+    ports: 
+      - "8080:8080"
+    volumes: 
+      - "/tmp/:/content"
+    restart: unless-stopped
\ No newline at end of file