forked from earthly/earthly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
earthly-entrypoint.sh
executable file
·77 lines (61 loc) · 2.24 KB
/
earthly-entrypoint.sh
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/sh
set -e
earthly_config="/etc/.earthly/config.yml"
if [ ! -f "$earthly_config" ]; then
# Missing config, generate it and use the env vars
# Do not do both, since that would write to the mounted config
mkdir -p "$(dirname $earthly_config)" && touch $earthly_config
# Apply global configuration
if [ -n "$GLOBAL_CONFIG" ]; then
earthly --config $earthly_config config global "$GLOBAL_CONFIG"
fi
# Apply git configuration
if [ -n "$GIT_CONFIG" ]; then
earthly --config $earthly_config config git "$GIT_CONFIG"
fi
fi
# Skip docker if you are not exporting any images.
if [ -z "$NO_DOCKER" ]; then
# Right now, this container is BYOD - Bring Your Own Docker.
if [ -z "$DOCKER_HOST" ]; then
echo "DOCKER_HOST is not set"
fi
# Light check if docker is functional
if ! docker images > /dev/null 2>&1; then
echo "Docker appears not to be connected. Please check your DOCKER_HOST variable, and try again."
exit 1
fi
fi
# If no host specified, start an internal buildkit. If it is specified, rely on external setup
if [ -z "$BUILDKIT_HOST" ]; then
# Is container running as privileged? This is currently required when starting up and using buildkit
if ! captest --text | grep sys_admin > /dev/null; then
echo "Container appears to be running unprivileged. Currently, privileged mode is required when buildkit runs inside the container."
exit 1
fi
export BUILDKIT_TCP_TRANSPORT_ENABLED=true
/usr/bin/entrypoint.sh \
buildkitd \
--config=/etc/buildkitd.toml \
>/var/log/buildkitd.log 2>&1 \
&
EARTHLY_BUILDKIT_HOST="tcp://$(hostname):8372" # hostname is not recognized as local for this reason
export EARTHLY_BUILDKIT_HOST
else
export EARTHLY_BUILDKIT_HOST="$BUILDKIT_HOST"
fi
echo "Using $EARTHLY_BUILDKIT_HOST as buildkit daemon"
# Use the desired target dir for running a target, saves typing if you use the convention
BASE_DIR="/workspace"
if [ -n "$SRC_DIR" ]; then
BASE_DIR="$SRC_DIR"
fi
cd "$BASE_DIR"
if [ -n "$EARTHLY_EXEC_CMD" ]; then
export earthly_config
exec "$EARTHLY_EXEC_CMD"
exit 1 # this should never be reached
fi
# Run earthly with given args.
# Exec so we don't have to trap and manage signal propagation
exec earthly --config $earthly_config "$@"