diff options
| author | Alexander Karl <akarl@darknebu.la> | 2019-10-10 22:25:09 +0200 | 
|---|---|---|
| committer | Alexander Karl <akarl@darknebu.la> | 2019-10-10 22:25:09 +0200 | 
| commit | ed60471af6f0ff159b6719be8547d23842a78e27 (patch) | |
| tree | 5177903f78c03ff55e50ae9b84d703b69bae0fd8 | |
| parent | 3b8689fff9dba4b39df54181726a8b34161d40e7 (diff) | |
add example docker-compose
| -rw-r--r-- | docker-compose.yml | 14 | 
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 | 
