Skip to content

Commit

Permalink
Use alpine varient of nginx image for running tests (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronMcHale authored Dec 26, 2024
1 parent 9ce6e0c commit b9ecee5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Pull images used during tests
run: docker pull nginx
run: docker pull nginx:alpine
- name: Run tests
run: cd tests && ./run.sh
2 changes: 1 addition & 1 deletion tests/docker-compose.test-dynamic-service-loading.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
# is copied with the name `docker-compose.yml`.
services:
test-dynamic-service-loading-nginx:
image: nginx
image: nginx:alpine
networks: [ web-router ]
2 changes: 1 addition & 1 deletion tests/docker-compose.test-web-router-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ networks:
external: true
services:
nginx:
image: nginx
image: nginx:alpine
container_name: web-router-test-networks-nginx
networks: [ web-router ]
2 changes: 1 addition & 1 deletion tests/docker-compose.test-web-router.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
# file will not run on its own since it does not define any services.
services:
nginx:
image: nginx
image: nginx:alpine
networks: [ web-router ]

0 comments on commit b9ecee5

Please sign in to comment.