| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- services:
- backend-testpoint:
- build:
- context: ..
- dockerfile: Dockerfile
- environment:
- - MODE=backend
- - WEBPORT=8080
- standalone:
- build:
- context: ..
- dockerfile: Dockerfile
- environment:
- - MODE=standalone
- - WEBPORT=8080
- - USE_NEW_DESIGN=false
- ports:
- - "18180:8080"
- standalone-new:
- build:
- context: ..
- dockerfile: Dockerfile
- environment:
- - MODE=standalone
- - WEBPORT=8080
- - USE_NEW_DESIGN=true
- - 'TITLE=Grüße "Tempo" ''Österreich'''
- - 'TAGLINE=No "Flash", <No Java>, No Websockets & No Bullsh*t'
- ports:
- - "18185:8080"
- standalone-apostrophe:
- build:
- context: ..
- dockerfile: Dockerfile
- environment:
- - MODE=standalone
- - WEBPORT=8080
- - USE_NEW_DESIGN=true
- - "TAGLINE=It'd rather be fast!"
- ports:
- - "18186:8080"
- backend:
- build:
- context: ..
- dockerfile: Dockerfile
- environment:
- - MODE=backend
- - WEBPORT=8080
- ports:
- - "18181:8080"
- frontend:
- build:
- context: ..
- dockerfile: Dockerfile
- depends_on:
- - backend-testpoint
- environment:
- - MODE=frontend
- - WEBPORT=8080
- volumes:
- - ./e2e/fixtures/servers-frontend.json:/servers.json:ro
- ports:
- - "18182:8080"
- dual:
- build:
- context: ..
- dockerfile: Dockerfile
- depends_on:
- - backend-testpoint
- environment:
- - MODE=dual
- - WEBPORT=8080
- volumes:
- - ./e2e/fixtures/servers-dual.json:/servers.json:ro
- ports:
- - "18183:8080"
|