docker-compose.yml 722 B

1234567891011121314151617181920
  1. version: '0.1'
  2. services:
  3. server:
  4. image: server:test
  5. ports:
  6. - '59465:443'
  7. - '59464:80'
  8. - '54088:54088'
  9. environment:
  10. - ASPNETCORE_URLS=https://+;http://+
  11. - ASPNETCORE_Kestrel__Certificates__Default__Path=/https/aspnetapp.pfx
  12. - ASPNETCORE_Kestrel__Certificates__Default__Password=85e39b26-0f2d-41a4-afe2-7ddce9d7d8cc
  13. - superSocket__Servers__0__Certificate_filePath=/https/localhost2.pfx
  14. - superSocket__Servers__0__Certificate_password=supersocket2
  15. - SuperSocketServerCertificate__filePath=/https/localhost.pfx
  16. - SuperSocketServerCertificate__password=supersocket
  17. volumes:
  18. - .\certificate:/https/
  19. - .\ServerLog:/app/logs/
  20. user: root