Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

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