https://github.com/modem7/docker-ldap
LDAP container for Docker
https://github.com/modem7/docker-ldap
docker ldap
Last synced: 8 months ago
JSON representation
LDAP container for Docker
- Host: GitHub
- URL: https://github.com/modem7/docker-ldap
- Owner: modem7
- License: mit
- Created: 2022-10-01T21:33:46.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-01-04T00:50:00.000Z (over 1 year ago)
- Last Synced: 2025-04-09T09:16:13.732Z (about 1 year ago)
- Topics: docker, ldap
- Language: Dockerfile
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Things to update in new repo:
```
.wakatime-project
.github/settings.yml
.github/dependabot.yml
README.md
```
---
# Github documentation regarding .gitattributes
https://docs.github.com/en/get-started/getting-started-with-git/configuring-git-to-handle-line-endings#per-repository-settings
---
# Template repos for gitattributes
https://github.com/alexkaratarakis/gitattributes
---
# CI to check gitattribute files in a repo:
```
missing_attributes=$(git ls-files | git check-attr -a --stdin | grep "text eol=lf")
if [[ "$missing_attributes" ]]; then
echo ".gitattributes rule missing for the following files:";
echo "$missing_attributes";
else
echo "All files have a corresponding rule in .gitattributes";
fi
```
---
# Renormalize files in a repo:
```
git add . -u
git commit -m "Saving files before refreshing line endings"
git add --renormalize .
git status
git commit -m "Normalize all the line endings"
```