Compare commits

...

2 Commits

Author SHA1 Message Date
knoflook c0abd0e0b3 chore: publish 0.2.5+4.1.0 release
continuous-integration/drone/push Build is passing Details
2023-07-12 14:57:01 +02:00
knoflook 934d4acd1d give write access to /usr/local/lib/R/site-library to new users 2023-07-12 14:52:49 +02:00
3 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
export CUSTOM_ENTRYPOINT_VERSION=v14
export OIDC_CONF_VERSION=v1
export PAM_EXEC_OAUTH2_YAML_VERSION=v1
export PAM_SCRIPT_AUTH_VERSION=v6
export PAM_SCRIPT_AUTH_VERSION=v7

View File

@ -29,7 +29,7 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "coop-cloud.${STACK_NAME}.version=0.2.4+4.1.0"
- "coop-cloud.${STACK_NAME}.version=0.2.5+4.1.0"
entrypoint: /docker-entrypoint.sh
command: /init

View File

@ -13,6 +13,7 @@ if ! id "$PAM_USER" &>/dev/null; then
uid=$(echo "$PAM_USER" | md5sum | grep -Eo "[[:digit:]]{3}" | head -n1 | sed -E 's/^0+//')
uid=$((1000+uid))
adduser --uid="$uid" "$PAM_USER" --disabled-password --quiet --gecos ""
usermod -aG staff "$PAM_USER"
fi
exit 0