generated from coop-cloud/example
Compare commits
2 Commits
0.2.2+4.1.
...
0.2.3+4.1.
Author | SHA1 | Date | |
---|---|---|---|
f7167745a5 | |||
71c2fd8eeb |
2
abra.sh
2
abra.sh
@ -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=v4
|
||||
export PAM_SCRIPT_AUTH_VERSION=v5
|
||||
|
@ -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.2+4.1.0"
|
||||
- "coop-cloud.${STACK_NAME}.version=0.2.3+4.1.0"
|
||||
entrypoint: /docker-entrypoint.sh
|
||||
command: /init
|
||||
|
||||
|
@ -10,7 +10,7 @@ if ! id "$PAM_USER" &>/dev/null; then
|
||||
# without it, UID→username mapping changes on every container restart, which
|
||||
# creates file ownership issues and prevents RStudio from working.
|
||||
# See https://github.com/WASHNote/washnote-apps/issues/67
|
||||
uid=$(echo "$PAM_USER" | md5sum | grep -Eo "[[:digit:]]{3}" | head -n1)
|
||||
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 ""
|
||||
fi
|
||||
|
Reference in New Issue
Block a user