From 7c10f69e8d990e56d54df9cb40aedd828d987af5 Mon Sep 17 00:00:00 2001 From: Christian Sciberras Date: Wed, 8 Jan 2025 23:14:10 +0100 Subject: [PATCH] Update docker-compose file --- docker-compose.yml | 40 +++++++++++++++++++--------------------- 1 file changed, 19 insertions(+), 21 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 809f14a..11a7591 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,22 +1,20 @@ -version: "3" - services: - selenium: - image: ${SELENIUM_IMAGE:-selenium/standalone-chrome:4} - hostname: selenium - shm_size: 4g - environment: - VNC_NO_PASSWORD: 1 - SCREEN_WIDTH: 1024 - SCREEN_HEIGHT: 768 - volumes: - - /dev/shm:/dev/shm - - ./vendor/mink/driver-testsuite/web-fixtures:/fixtures - ports: - - "4444:4444" - # VNC Web Viewer port (new images) - - "7900:7900" - # VNC Server port (old "-debug" images) - - "5900:5900" - extra_hosts: - - host.docker.internal:host-gateway + selenium: + image: ${SELENIUM_IMAGE:-selenium/standalone-chrome:4} + hostname: selenium + shm_size: 4g + environment: + VNC_NO_PASSWORD: 1 + SCREEN_WIDTH: 1024 + SCREEN_HEIGHT: 768 + volumes: + - /dev/shm:/dev/shm + - ./vendor/mink/driver-testsuite/web-fixtures:/fixtures + ports: + - "4444:4444" + # VNC Web Viewer port (new images) + - "7900:7900" + # VNC Server port (old "-debug" images) + - "5900:5900" + extra_hosts: + - host.docker.internal:host-gateway