From 14038d0de95495ccdace57b74034678270ba1903 Mon Sep 17 00:00:00 2001 From: itecompro <16090309+itecompro@users.noreply.github.com> Date: Sun, 1 Sep 2024 07:40:15 +1000 Subject: [PATCH] Remove port mapping for container jobs --- .../creating-postgresql-service-containers.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/content/actions/use-cases-and-examples/using-containerized-services/creating-postgresql-service-containers.md b/content/actions/use-cases-and-examples/using-containerized-services/creating-postgresql-service-containers.md index d498ebbb739b..53ad24a85822 100644 --- a/content/actions/use-cases-and-examples/using-containerized-services/creating-postgresql-service-containers.md +++ b/content/actions/use-cases-and-examples/using-containerized-services/creating-postgresql-service-containers.md @@ -67,9 +67,6 @@ jobs: --health-interval 10s --health-timeout 5s --health-retries 5 - ports: - # Maps tcp port 5432 on service container to the host - - 5432:5432 steps: # Downloads a copy of the code in your repository before running CI tests @@ -123,9 +120,6 @@ jobs: --health-interval 10s --health-timeout 5s --health-retries 5 - ports: - # Maps tcp port 5432 on service container to the host - - 5432:5432 ``` ### Configuring the steps for jobs in containers