docker-compose-local.yml 814 B

12345678910111213141516171819202122232425262728
  1. version: "3"
  2. services:
  3. runnersmeet:
  4. image: executry/runners-meet
  5. ports:
  6. - 7443:443
  7. - 7080:80
  8. volumes:
  9. - "./sandbox/https:/https:ro"
  10. - "./sandbox/data:/app/data"
  11. - "./config/app.staging.config.json:/app/wwwroot/assets/app.config.json"
  12. environment:
  13. - ASPNETCORE_ENVIRONMENT=Development
  14. - ASPNETCORE_URLS=https://*:443;http://*:80
  15. - ASPNETCORE_Kestrel__Certificates__Default__Password=localhost
  16. - ASPNETCORE_Kestrel__Certificates__Default__Path=/https/localhost-self-signed.pfx
  17. - ASPNETCORE_HTTPS_PORT=7443
  18. deploy:
  19. restart_policy:
  20. condition: on-failure
  21. delay: 5s
  22. max_attempts: 3
  23. window: 10s
  24. resources:
  25. limits:
  26. cpus: "1"
  27. memory: "2gb"