2022-02-18 14:40:20 +01:00
|
|
|
version: '3.5'
|
|
|
|
services:
|
|
|
|
# overrides for e2e tests to be closer to production
|
|
|
|
# use with command:
|
|
|
|
# docker-compose -f docker-compose.yaml -f docker-compose.e2e.yml up -d --build
|
|
|
|
|
|
|
|
front:
|
|
|
|
image: 'wa-front-e2e'
|
|
|
|
build:
|
|
|
|
context: ./
|
|
|
|
dockerfile: front/Dockerfile
|
2022-02-25 20:32:10 +01:00
|
|
|
command: /bin/sh -c "/templater.sh && envsubst < /usr/share/nginx/html/env-config.template.js > /usr/share/nginx/html/env-config.js && exec nginx -g 'daemon off;'"
|
2022-02-18 14:40:20 +01:00
|
|
|
volumes: []
|
|
|
|
labels:
|
|
|
|
- "traefik.enable=true"
|
|
|
|
- "traefik.http.routers.front.rule=Host(`play.workadventure.localhost`)"
|
|
|
|
- "traefik.http.routers.front.entryPoints=web"
|
|
|
|
- "traefik.http.services.front.loadbalancer.server.port=80"
|
|
|
|
- "traefik.http.routers.front-ssl.rule=Host(`play.workadventure.localhost`)"
|
|
|
|
- "traefik.http.routers.front-ssl.entryPoints=websecure"
|
|
|
|
- "traefik.http.routers.front-ssl.tls=true"
|
|
|
|
- "traefik.http.routers.front-ssl.service=front"
|
|
|
|
|
|
|
|
pusher:
|
|
|
|
image: 'wa-pusher-e2e'
|
|
|
|
build:
|
|
|
|
context: ./
|
|
|
|
dockerfile: pusher/Dockerfile
|
|
|
|
command: yarn run runprod
|
|
|
|
volumes: []
|
2022-03-11 17:02:58 +01:00
|
|
|
environment:
|
|
|
|
ENABLE_OPENAPI_ENDPOINT: "false"
|
2022-02-18 14:40:20 +01:00
|
|
|
|
|
|
|
back:
|
|
|
|
image: 'wa-back-e2e'
|
|
|
|
build:
|
|
|
|
context: ./
|
|
|
|
dockerfile: back/Dockerfile
|
|
|
|
command: yarn run runprod
|
|
|
|
volumes: []
|