Skip to content

Instantly share code, notes, and snippets.

@blehr
Created November 7, 2018 14:58
Show Gist options
  • Save blehr/add67a4e70f3d1ea19886c9d2b1f3e62 to your computer and use it in GitHub Desktop.
Save blehr/add67a4e70f3d1ea19886c9d2b1f3e62 to your computer and use it in GitHub Desktop.
docker-compose.yml dotnet, nginx, let's encrypt
version: '2'
services:
app:
build:
context: ./
dockerfile: Dockerfile
https-portal:
image: steveltn/https-portal:1
ports:
- '80:80'
- '443:443'
links:
- app
restart: always
environment:
DOMAINS: 'alpacatracker.com -> http://app:5000'
STAGE: 'production'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment