1
0

docker-compose-playwright.yml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. services:
  2. backend-testpoint:
  3. build:
  4. context: ..
  5. dockerfile: Dockerfile
  6. environment:
  7. - MODE=backend
  8. - WEBPORT=8080
  9. standalone:
  10. build:
  11. context: ..
  12. dockerfile: Dockerfile
  13. environment:
  14. - MODE=standalone
  15. - WEBPORT=8080
  16. - USE_NEW_DESIGN=false
  17. ports:
  18. - "18180:8080"
  19. standalone-new:
  20. build:
  21. context: ..
  22. dockerfile: Dockerfile
  23. environment:
  24. - MODE=standalone
  25. - WEBPORT=8080
  26. - USE_NEW_DESIGN=true
  27. - 'TITLE=Grüße "Tempo" ''Österreich'''
  28. - 'TAGLINE=No "Flash", <No Java>, No Websockets & No Bullsh*t'
  29. ports:
  30. - "18185:8080"
  31. backend:
  32. build:
  33. context: ..
  34. dockerfile: Dockerfile
  35. environment:
  36. - MODE=backend
  37. - WEBPORT=8080
  38. ports:
  39. - "18181:8080"
  40. frontend:
  41. build:
  42. context: ..
  43. dockerfile: Dockerfile
  44. depends_on:
  45. - backend-testpoint
  46. environment:
  47. - MODE=frontend
  48. - WEBPORT=8080
  49. volumes:
  50. - ./e2e/fixtures/servers-frontend.json:/servers.json:ro
  51. ports:
  52. - "18182:8080"
  53. dual:
  54. build:
  55. context: ..
  56. dockerfile: Dockerfile
  57. depends_on:
  58. - backend-testpoint
  59. environment:
  60. - MODE=dual
  61. - WEBPORT=8080
  62. volumes:
  63. - ./e2e/fixtures/servers-dual.json:/servers.json:ro
  64. ports:
  65. - "18183:8080"