Skip to content

Instantly share code, notes, and snippets.

View seraphire's full-sized avatar

Ben Keene seraphire

  • PartsWatch Solutions, LLC
View GitHub Profile
@seraphire
seraphire / ngnix-docker-compose.yml
Last active October 1, 2022 21:37
Docker SWAG and DDNS
View ngnix-docker-compose.yml
services:
web:
image: nginx:alpine
ports:
- "8088:80"
- '443:443'
volumes:
- ../swag/appdata/config/keys/letsencrypt/privkey.pem:/etc/nginx/privkey.pem:ro
- ../swag/appdata/config/keys/letsencrypt/fullchain.pem:/etc/nginx/fullchain.pem:ro
- ./appdata/ssl.conf:/etc/nginx/conf.d/ssl.conf