-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
29 lines (24 loc) · 903 Bytes
/
Copy path.env.example
File metadata and controls
29 lines (24 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# .env.example
# Copy this file to .env and fill in your own values:
# cp .env.example .env
#
# .env is gitignored and will NOT be committed.
# ── Docker ───────────────────────────────────────────────────────────────────
XSOCK=/tmp/.X11-unix
XAUTH=/tmp/.docker.xauth
AVAILABLE_CORES=$(($(nproc) - 1))
DOCKER_USER=todo-docker-user
BASE_IMAGE=todo-base-image
IMAGE_NAME=todo-image-name
IMAGE_USER=todo-image-user
IMAGE_TAG=latest
TIME_ZONE=$(cat /etc/timezone 2>/dev/null || readlink /etc/localtime | sed 's|.*/zoneinfo/||')
TIME_ZONE=${TIME_ZONE:-UTC}
CONTAINER_NAME=${IMAGE_NAME}
HOME_FOLDER=/home/${IMAGE_USER}
CODE_FOLDER=${IMAGE_NAME}
HOST_UID=$(id -u)
HOST_GID=$(id -g)
HOST=${HOST:-$(hostname)}
HOSTNAME=${HOSTNAME:-$(hostname)}
BUILDER=multi-platform