3232 uses : docker/setup-buildx-action@v3
3333
3434 - name : Start containers
35- run : docker- compose -f "compas/docker-compose-postgresql.yml" up -d --build
35+ run : docker compose -f "compas/docker-compose-postgresql.yml" up -d --build
3636 env :
37- COMPAS_HOSTNAME : compas_reverse-proxy_1
37+ COMPAS_HOSTNAME : compas-reverse-proxy-1
3838 CONFIGURATION_LOCATION : /nginx.conf
3939
4040 - name : Wait until containers started
@@ -45,11 +45,11 @@ jobs:
4545 - name : Execute integration tests (firefox)
4646 # Using the Docker Image from ppodgorsek (https://github.com/ppodgorsek/docker-robot-framework)
4747 # to run the Robot Framework Test Scripts.
48- # To connect with the Docker Compose and use http://compas_reverse-proxy_1 / as URL we are
48+ # To connect with the Docker Compose and use http://compas-reverse-proxy-1 / as URL we are
4949 # connecting to the same network "compas_default" that's started bij Docker Compose.
5050 run : |
5151 docker run --rm -e BROWSER=firefox \
52- -e ROBOT_OPTIONS="-v url:http://compas_reverse-proxy_1 /" \
52+ -e ROBOT_OPTIONS="-v url:http://compas-reverse-proxy-1 /" \
5353 -v $(pwd)/target/firefox:/opt/robotframework/reports:Z \
5454 -v $(pwd)/integration-testing:/opt/robotframework/tests:Z \
5555 --user $(id -u):$(id -g) \
@@ -61,11 +61,11 @@ jobs:
6161 - name : Execute integration tests (chromium)
6262 # Using the Docker Image from ppodgorsek (https://github.com/ppodgorsek/docker-robot-framework)
6363 # to run the Robot Framework Test Scripts.
64- # To connect with the Docker Compose and use http://compas_reverse-proxy_1 / as URL we are
64+ # To connect with the Docker Compose and use http://compas-reverse-proxy-1 / as URL we are
6565 # connecting to the same network "compas_default" that's started bij Docker Compose.
6666 run : |
6767 docker run --rm -e BROWSER=chromium \
68- -e ROBOT_OPTIONS="-v url:http://compas_reverse-proxy_1 /" \
68+ -e ROBOT_OPTIONS="-v url:http://compas-reverse-proxy-1 /" \
6969 -v $(pwd)/target/firefox:/opt/robotframework/reports:Z \
7070 -v $(pwd)/integration-testing:/opt/robotframework/tests:Z \
7171 --user $(id -u):$(id -g) \
8484
8585 - name : Stop containers
8686 if : always()
87- run : docker- compose -f "compas/docker-compose-postgresql.yml" down -v
87+ run : docker compose -f "compas/docker-compose-postgresql.yml" down -v
0 commit comments