From 787e769cf1382fc81b76de316433c5c427a173cf Mon Sep 17 00:00:00 2001 From: Angela Tran Date: Mon, 4 Nov 2024 18:03:14 +0000 Subject: [PATCH] fix(ci): mark 'playwright' service under a 'testing' profile the tests-cypress workflow was failing because there is no .env file for the playwright service, but we don't even need that service to start. this makes it so it is not started by default. see https://docs.docker.com/compose/how-tos/profiles/ for more. --- compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/compose.yml b/compose.yml index 111215014..8916cebe3 100644 --- a/compose.yml +++ b/compose.yml @@ -52,3 +52,4 @@ services: - ./playwright:/playwright # https://code.visualstudio.com/docs/remote/create-dev-container#_use-docker-compose entrypoint: sleep infinity + profiles: ["testing"]