We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d8c30d commit 7bacf09Copy full SHA for 7bacf09
2 files changed
.github/workflows/build.yml
@@ -19,9 +19,9 @@ jobs:
19
20
- name: Crawl
21
run: |
22
- while ! nc -z localhost 8080; do sleep 0.1; done; # Wait for server to start
+ while ! nc -z localhost 80; do sleep 0.1; done; # Wait for server to start
23
mkdir -p output
24
- wget -P output -nH --mirror --adjust-extension --page-requisites --no-parent http://127.0.0.1:8080
+ wget -P output -nH --mirror --adjust-extension --page-requisites --no-parent http://127.0.0.1:80
25
26
- name: Stop containers
27
if: always()
docker-compose.yml
@@ -4,8 +4,8 @@ services:
4
web:
5
image: nginx:1.21.4
6
network_mode: "host"
7
- ports:
8
- - "8080:80"
+ # ports:
+ # - "8080:80"
9
volumes:
10
- ./code:/code
11
- ./default.conf:/etc/nginx/conf.d/default.conf
0 commit comments