Skip to content

Commit 8d1b17a

Browse files
author
Edward Thomson
authored
Update about-service-containers.md (github#26774)
1 parent 77f4d3f commit 8d1b17a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/actions/using-containerized-services/about-service-containers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ When a job runs directly on a runner machine, the service running in the Docker
4949

5050
You can use the `services` keyword to create service containers that are part of a job in your workflow. For more information, see [`jobs.<job_id>.services`](/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idservices).
5151

52-
This example creates a service called `redis` in a job called `container-job`. The Docker host in this example is the `node:10.18-jessie` container.
52+
This example creates a service called `redis` in a job called `container-job`. The Docker host in this example is the `node:16-bullseye` container.
5353

5454
{% raw %}
5555
```yaml{:copy}
@@ -62,7 +62,7 @@ jobs:
6262
# Containers must run in Linux based operating systems
6363
runs-on: ubuntu-latest
6464
# Docker Hub image that `container-job` executes in
65-
container: node:10.18-jessie
65+
container: node:16-bullseye
6666
6767
# Service containers to run with `container-job`
6868
services:

0 commit comments

Comments
 (0)