-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial Caddy install with reverse_proxy to ace * Prevent http-to-https redirect * README updates after adding reverse proxy * Readme clarifications * Re-enabled non-root user * hadolint fixes * Clarify ARM not supported in README * Remove setting of USER * README update * Try improving push action * No install recommends * Remove ignored hadolint rule * Remove comment in dockerfile * Simplify docker compose * Install just what's needed * Explicitly start with Caddyfile * Don't build for arm, unable to run * Improved logging direct to stderr * Testing redirects * Remove Caddy * Simplify dockerfile by installing acestream deps * Lint fix * Lint fix 2 * Revert ports because I know it works * Run on port 80 * Clarify docs on HLS * More readme improvements * Fix port in README * Typo * Try backwards compatible change * Run on port 80 For some reason this seems to work always, but requires a breaking change since default port is being changed and port mappings need to be updated
- Loading branch information
1 parent
863fbb5
commit 01166cc
Showing
5 changed files
with
83 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
ignored: | ||
- "DL3008" # pin versions in apt install | ||
- "DL3013" # pin versions in pip | ||
- "DL3059" # Multiple consecutive `RUN` instructions. Consider consolidation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
version: '3' | ||
version: '3.9' | ||
services: | ||
app: | ||
build: . | ||
ports: | ||
- '6878:6878' | ||
- '6878:80' |