Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/apisix_dev_push_docker_hub.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
"upstream": {
"type": "roundrobin",
"nodes": {
"httpbin.org:80": 1
"httpbin:80": 1
}
}
}'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/apisix_push_docker_hub.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
"upstream": {
"type": "roundrobin",
"nodes": {
"httpbin.org:80": 1
"httpbin:80": 1
}
}
}'
Expand Down
7 changes: 7 additions & 0 deletions compose/docker-compose-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ services:
networks:
- apisix

# local upstream for CI route tests, avoids the flaky public httpbin.org
httpbin:
image: kennethreitz/httpbin
restart: always
networks:
- apisix

networks:
apisix:
driver: bridge
7 changes: 7 additions & 0 deletions compose/docker-compose-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ services:
networks:
- apisix

# local upstream for CI route tests, avoids the flaky public httpbin.org
httpbin:
image: kennethreitz/httpbin
restart: always
networks:
- apisix

networks:
apisix:
driver: bridge
Loading