Skip to content

Commit

Permalink
docker-compose fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kgartland-rstudio committed Apr 4, 2024
1 parent 7e46340 commit 54066e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions selenium/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -147,19 +147,19 @@ grid-up: network-up
NETWORK=${NETWORK} \
GRID_TIMEOUT=${GRID_TIMEOUT} \
SELENIUM_VERSION=${SELENIUM_VERSION} \
docker-compose -f ${DCYML_GRID} -p ${PROJECT} up -d --scale firefox=${SCALE_FIREFOX} --scale chrome=${SCALE_CHROME}
docker compose -f ${DCYML_GRID} -p ${PROJECT} up -d --scale firefox=${SCALE_FIREFOX} --scale chrome=${SCALE_CHROME}

grid-down:
NETWORK=${NETWORK} \
GRID_TIMEOUT=${GRID_TIMEOUT} \
SELENIUM_VERSION=${SELENIUM_VERSION} \
docker-compose -f ${DCYML_GRID} -p ${PROJECT} down
docker compose -f ${DCYML_GRID} -p ${PROJECT} down

grid-restart:
NETWORK=${NETWORK} \
GRID_TIMEOUT=${GRID_TIMEOUT} \
SELENIUM_VERSION=${SELENIUM_VERSION} \
docker-compose -f ${DCYML_GRID} -p ${PROJECT} restart
docker compose -f ${DCYML_GRID} -p ${PROJECT} restart

network-up:
$(eval NETWORK_EXISTS=$(shell docker network inspect ${NETWORK} > /dev/null 2>&1 && echo 0 || echo 1))
Expand Down

0 comments on commit 54066e9

Please sign in to comment.