CI: Clarifying that the reverse proxy should be up *before* Synapse.

This commit is contained in:
David Teller 2021-11-18 14:54:46 +01:00
parent 15510adc27
commit 1446b261d8

View File

@ -1,8 +1,9 @@
name: mjolnir
up:
# Launch the reverse proxy, listening for connections *only* on the local host.
- docker run --rm --network host --name mjolnir-test-reverse-proxy -p 127.0.0.1:8081:80 -v $MX_TEST_CWD/test/nginx.conf:/etc/nginx/nginx.conf:ro -d nginx
before:
# Launch the reverse proxy, listening for connections *only* on the local host.
- docker run --rm --network host --name mjolnir-test-reverse-proxy -p 127.0.0.1:8081:80 -v $MX_TEST_CWD/test/nginx.conf:/etc/nginx/nginx.conf:ro -d nginx
run:
- yarn test:integration
down: