| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- 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-alpine:
- build:
- context: ..
- dockerfile: Dockerfile.alpine
- environment:
- - MODE=standalone
- - WEBPORT=8080
- - USE_NEW_DESIGN=true
- ports:
- - "18187: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"
|