version: '3' services: nginx: image: jonasal/nginx-certbot:latest restart: unless-stopped environment: - CERTBOT_EMAIL=${CERTBOT_EMAIL} ports: - 80:80 - 443:443 volumes: - nginx_secrets:/etc/letsencrypt - ./proxy:/etc/nginx/user_conf.d frontend: image: git.flokaiser.com/dhbw/cloud-computing-frontend:latest restart: unless-stopped backend: image: git.flokaiser.com/dhbw/cloud-computing-backend:latest restart: unless-stopped environment: - DATABASE_URL=${DATABASE_URL} - AZURE_KEY=${AZURE_KEY} - AZURE_ENDPOINT=${AZURE_ENDPOINT} - AZURE_LOCATION=${AZURE_LOCATION} - ENV=${ENV} volumes: nginx_secrets: