diff options
author | Toby Jaffey <toby@ringtailsoftware.co.uk> | 2022-12-12 10:26:38 +0000 |
---|---|---|
committer | Toby Jaffey <toby@ringtailsoftware.co.uk> | 2022-12-12 10:26:38 +0000 |
commit | 4afa513dced3b9ef024bc366b4fc884802730d50 (patch) | |
tree | 51098e478054a66439e98dfab89cbbedf5d9f5c0 /docker-compose.yaml | |
parent | aa82e14bc7e7a3770feb23446d1a843d97213ccf (diff) |
Add docker-compose support, so a working development server with HTTPS can be started with:
docker-compose build && docker-compose up
Diffstat (limited to 'docker-compose.yaml')
-rw-r--r-- | docker-compose.yaml | 27 |
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" + |