You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. version: '2'
  2. services:
  3. frontend:
  4. build: ./frontend
  5. image: docker-registry.rthoni.com/sites-status-frontend-image:dev
  6. container_name: sites-status-frontend
  7. # restart: unless-stopped
  8. networks:
  9. sites-status.internal.docker:
  10. aliases:
  11. - frontend.sites-status.internal.docker
  12. ports:
  13. - "127.0.0.1:34041:80"
  14. env_file:
  15. - env
  16. backend:
  17. build:
  18. context: ./backend
  19. args:
  20. - WEBAPI_PROJECT=SiteStatus
  21. - BUILD_CONFIG=Release
  22. image: docker-registry.rthoni.com/sites-status-backend-image:dev
  23. container_name: sites-status-backend
  24. # restart: unless-stopped
  25. networks:
  26. sites-status.internal.docker:
  27. aliases:
  28. - backend.sites-status.internal.docker
  29. volumes:
  30. - ./data/backend/storage:/data/storage
  31. env_file:
  32. - env
  33. environment:
  34. - ASPNETCORE_ENVIRONMENT=Production
  35. - ASPNETCORE_URLS=http://0.0.0.0:8080
  36. networks:
  37. sites-status.internal.docker: