Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker-compose fix #371

Merged
merged 1 commit into from
Apr 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading