mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2025-12-10 13:52:38 +00:00
Compare commits
8 commits
ab664d7e32
...
ff6a921189
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ff6a921189 | ||
|
|
24f081ce9f | ||
|
|
8e8e37fcc1 | ||
|
|
17a5ddc232 | ||
|
|
0e7e68e153 | ||
|
|
4da0319f1f | ||
|
|
9748e5b9b7 | ||
|
|
1815408e73 |
7
build.sh
7
build.sh
|
|
@ -104,6 +104,9 @@ GH_ACTION If defined, special 'echo' statements are enabled that set the
|
|||
|
||||
CHECK_ONLY Only checks if the build is needed and sets the GH Action output.
|
||||
${_GREEN}Default:${_CLEAR} undefined
|
||||
|
||||
NO_CACHE Disables Docker Build Cache.
|
||||
${_GREEN}Default:${_CLEAR} undefined
|
||||
|
||||
${_BOLD}Examples:${_CLEAR}
|
||||
|
||||
|
|
@ -409,7 +412,9 @@ fi
|
|||
if [ -n "${NO_PROXY}" ]; then
|
||||
DOCKER_BUILD_ARGS+=(--build-arg "no_proxy=${NO_PROXY}")
|
||||
fi
|
||||
|
||||
if [ -n "${NO_CACHE}" ]; then
|
||||
DOCKER_BUILD_ARGS+=(--no-cache)
|
||||
fi
|
||||
DOCKER_BUILD_ARGS+=(--platform "${BUILDX_PLATFORM-linux/amd64}")
|
||||
if [ "${2}" == "--push" ]; then
|
||||
# output type=docker does not work with pushing
|
||||
|
|
|
|||
|
|
@ -109,3 +109,6 @@ AUTH_LDAP_USER_ATTR_MAP = {
|
|||
"last_name": environ.get('AUTH_LDAP_ATTR_LASTNAME', 'sn'),
|
||||
"email": environ.get('AUTH_LDAP_ATTR_MAIL', 'mail')
|
||||
}
|
||||
|
||||
# Update user object with the latest values from the LDAP directory every time the user logs in.
|
||||
AUTH_LDAP_ALWAYS_UPDATE_USER = environ.get('AUTH_LDAP_ALWAYS_UPDATE_USER', 'True').lower() == 'true'
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
django-auth-ldap==5.2.0
|
||||
dulwich==0.22.8
|
||||
dulwich==0.23.0
|
||||
python3-saml==1.16.0
|
||||
--no-binary lxml
|
||||
--no-binary xmlsec
|
||||
sentry-sdk[django]==2.28.0
|
||||
sentry-sdk[django]==2.30.0
|
||||
|
|
|
|||
Loading…
Reference in a new issue