mirror of
https://github.com/dockersrc/alpine
synced 2025-09-17 21:57:43 -04:00
Some checks failed
alpine-3-16 / alpine-3-16 (push) Failing after 38m2s
alpine-3-15 / alpine-3-15 (push) Failing after 44m31s
alpine-3-14 / alpine-3-14 (push) Failing after 48m18s
alpine-latest / alpine-latest (push) Failing after 12m15s
alpine-edge / alpine-edge (push) Failing after 12m23s
alpine-3-20 / alpine-3-20 (push) Failing after 12m47s
alpine-3-22 / alpine-3-20 (push) Failing after 30m58s
alpine-3-21 / alpine-3-20 (push) Failing after 50m35s
alpine-3-19 / alpine-3-19 (push) Failing after 50m47s
alpine-3-18 / alpine-3-18 (push) Failing after 50m58s
alpine-3-17 / alpine-3-17 (push) Failing after 51m0s
14 lines
543 B
Bash
14 lines
543 B
Bash
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# GLOBAL enviroment variables
|
|
USER="${USER:-root}"
|
|
LANG="${LANG:-C.UTF-8}"
|
|
TZ="${TZ:-America/New_York}"
|
|
ENV_PORTS="${ENV_PORTS//\/*/}"
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# How to set permissions
|
|
SERVICE_USER="${SERVICE_USER:-}"
|
|
SERVICE_GROUP="${SERVICE_GROUP:-}"
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
SERVICE_UID="${SERVICE_UID:-}" # set the user id
|
|
SERVICE_GID="${SERVICE_GID:-}" # set the group id
|