From 2e067e49047b483248c59094d05f1384400b9692 Mon Sep 17 00:00:00 2001 From: kobenguyent <7845001+kobenguyent@users.noreply.github.com> Date: Thu, 9 Jan 2025 21:30:57 +0100 Subject: [PATCH] improve the docker compose networks (#4731) * improve the docker compose networks * improve the docker compose networks * improve the docker compose networks --- test/docker-compose.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/docker-compose.yml b/test/docker-compose.yml index 03f91bc31..6537b5069 100644 --- a/test/docker-compose.yml +++ b/test/docker-compose.yml @@ -70,8 +70,9 @@ services: <<: *test-service entrypoint: [] command: npm run json-server - expose: - - 8010 + ports: + - '8010:8010' # Expose to host + restart: always # Automatically restart the container if it fails or becomes unhealthy puppeteer-image: image: ghcr.io/puppeteer/puppeteer:22.4.1