summaryrefslogtreecommitdiff
path: root/docker-compose.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'docker-compose.yaml')
-rw-r--r--docker-compose.yaml27
1 files changed, 27 insertions, 0 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml
new file mode 100644
index 0000000..bc4abf7
--- /dev/null
+++ b/docker-compose.yaml
@@ -0,0 +1,27 @@
+---
+version: '3'
+
+services:
+ snac:
+ build: .
+ image: snac
+ container_name: snac
+ restart: unless-stopped
+ security_opt:
+ - no-new-privileges:true
+ volumes:
+ - ./data:/data
+ ports:
+ - "8001:8001"
+
+ nginx-alpine-ssl:
+ build: examples/nginx-alpine-ssl
+ image: examples/nginx-alpine-ssl
+ container_name: nginx-alpine-ssl
+ restart: unless-stopped
+ security_opt:
+ - no-new-privileges:true
+ ports:
+ - "443:443"
+ - "80:80"
+