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
8 changes: 7 additions & 1 deletion tests/setuponlytests/generic-packs/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@ services:
image: nginx
volumes:
- ./web:/usr/share/nginx/html
healthcheck:
test: ["CMD", "curl", "--fail", "http://localhost/configs.zip"]
interval: 3s
timeout: 5s
retries: 3
mc:
depends_on:
- web
web:
condition: service_healthy
image: ${IMAGE_TO_TEST:-itzg/minecraft-server}
environment:
EULA: "true"
Expand Down
9 changes: 8 additions & 1 deletion tests/setuponlytests/icon-gif-multiframe/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,16 @@ services:
image: nginx
volumes:
- ./web:/usr/share/nginx/html
healthcheck:
test:
["CMD", "curl", "--fail", "http://localhost/motion-tween-example.gif"]
interval: 3s
timeout: 5s
retries: 3
mc:
depends_on:
- web
web:
condition: service_healthy
image: ${IMAGE_TO_TEST:-itzg/minecraft-server}
environment:
EULA: "true"
Expand Down
14 changes: 13 additions & 1 deletion tests/setuponlytests/icon-png-atscale/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,21 @@ services:
image: nginx
volumes:
- ./web:/usr/share/nginx/html
healthcheck:
test:
[
"CMD",
"curl",
"--fail",
"http://localhost/4737386_minecraft_squircle_icon.png",
]
interval: 3s
timeout: 5s
retries: 3
mc:
depends_on:
- web
web:
condition: service_healthy
image: ${IMAGE_TO_TEST:-itzg/minecraft-server}
environment:
EULA: "true"
Expand Down
14 changes: 13 additions & 1 deletion tests/setuponlytests/icon-png-scale/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,21 @@ services:
image: nginx
volumes:
- ./web:/usr/share/nginx/html
healthcheck:
test:
[
"CMD",
"curl",
"--fail",
"http://localhost/4737386_minecraft_squircle_icon.png",
]
interval: 3s
timeout: 5s
retries: 3
mc:
depends_on:
- web
web:
condition: service_healthy
image: ${IMAGE_TO_TEST:-itzg/minecraft-server}
environment:
EULA: "true"
Expand Down
8 changes: 7 additions & 1 deletion tests/setuponlytests/packwiz/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@ services:
image: nginx
volumes:
- ./web:/usr/share/nginx/html
healthcheck:
test: ["CMD", "curl", "--fail", "http://localhost/pack.toml"]
interval: 3s
timeout: 5s
retries: 3
mc:
depends_on:
- web
web:
condition: service_healthy
image: ${IMAGE_TO_TEST:-itzg/minecraft-server}
environment:
EULA: "true"
Expand Down
Loading