docker-compose.yaml (579B)
1 --- 2 version: '3' 3 4 services: 5 snac: 6 build: . 7 image: snac 8 container_name: snac 9 restart: unless-stopped 10 security_opt: 11 - no-new-privileges:true 12 volumes: 13 - ./data:/data 14 ports: 15 - "8001:8001" 16 17 nginx-alpine-ssl: 18 build: examples/nginx-alpine-ssl 19 image: examples/nginx-alpine-ssl 20 container_name: nginx-alpine-ssl 21 restart: unless-stopped 22 security_opt: 23 - no-new-privileges:true 24 ports: 25 - "443:443" 26 - "80:80" 27