Skip to content

Commit

Permalink
Merge pull request #371 from rstudio/kg-docker-compose
Browse files Browse the repository at this point in the history
docker-compose fix
  • Loading branch information
kgartland-rstudio committed Apr 4, 2024
2 parents 7e46340 + 54066e9 commit 0c3d679
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 0c3d679

Please sign in to comment.