mirror of
https://github.com/coleam00/Archon
synced 2026-04-21 13:37:41 +00:00
- .gitattributes: force LF for *.sh, docker-entrypoint.sh, Caddyfile* - docker-entrypoint.sh: normalize to LF - Caddyfile.example: normalize to LF - Dockerfile: add sed CRLF strip as defense-in-depth after COPY - docs/docker.md: add "Local Docker Desktop" section for Windows/macOS Closes #869
8 lines
236 B
Text
8 lines
236 B
Text
# Auto detect text files and perform LF normalization
|
|
* text=auto
|
|
|
|
# Force LF line endings for files that run inside Linux containers
|
|
*.sh text eol=lf
|
|
docker-entrypoint.sh text eol=lf
|
|
Caddyfile text eol=lf
|
|
Caddyfile.example text eol=lf
|