Skip to content

Commit

Permalink
fix: wrong dockerfile ref in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
scolastico committed Dec 21, 2023
1 parent 9fdee21 commit 1f55010
Show file tree
Hide file tree
Showing 4 changed files with 867 additions and 899 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-http-single-file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
with:
image: s.containers/http-single-file
registry: ghcr.io
directory: ./src/http-echo/
dockerfile: ./src/http-echo/Dockerfile
directory: ./src/http-single-file/
dockerfile: ./src/http-single-file/Dockerfile
addLatest: true
multiPlatform: true
platform: linux/amd64,linux/arm64,linux/arm/v7
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ containers or images based on a simple API call.
The WebSocket Relay is a container that functions similarly to ngrok, making it ideal
for forwarding local pages to a publicly accessible server.

### ['s.containers/http-single-file'](./src/http-single-file/README.md)
### [`s.containers/http-single-file`](./src/http-single-file/README.md)

A simple container to serve a single file via http. This can be useful if you want to serve a single file or modify a single file, for example a css file.
3 changes: 2 additions & 1 deletion src/http-single-file/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,6 @@ version: "3"
- "traefik.http.routers.custom-css.rule=Host(`example.com`) && PathPrefix(`/main.css`)"
- "traefik.http.routers.custom-css.entrypoints=websecure"
- "traefik.http.routers.custom-css.tls.certresolver=myresolver"
- "traefik.services.custom-css.loadbalancer.server.port=3000"
- "traefik.http.services.custom-css.loadbalancer.server.port=3000"
- "traefik.http.services.custom-css.loadbalancer.server.scheme=http"
```
Loading

0 comments on commit 1f55010

Please sign in to comment.