-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstart_test_env.sh
executable file
·44 lines (43 loc) · 1.36 KB
/
start_test_env.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
#!/bin/sh -e
#
# Stand up an Alpine container, mount this directory to /tmp,
# sh into the container, and create a subshell in our project directory.
#
# NOTES:
# We (imperfectly) handle differences in readlink between mac (Darwin)
# and Alpine.
#
# If you need another shell connected to this container:
# docker exec -it alpine-test sh -c 'cd /tmp; sh'
#
# If you don't want the extra subshell I use for convenience to
# dump you into /tmp, you can omit "-c 'cd /tmp; sh'" and
# 'cd /tmp'.
#
# CAVEATS:
# Our directory locator will not reliably work on a mac when this
# script is called through a symlink
#
# TODO:
# Figure out a robust directory locator for a symlink on mac.
# Researched readlink & stat & google and found no solution but
# 'brew install coreutils' and greadlink.
#
if [ "$(uname -s)" = "Darwin" ]; then
# If called through a symlink, this will point to the symlink dir
# instead of the actual script dir.
THIS_SCRIPT_DIR="$( cd "$( dirname "${0}" )" && pwd )"
else
THIS_SCRIPT_DIR=$(dirname $(readlink -f "${0}"))
fi
(
cd ${THIS_SCRIPT_DIR}
echo "Running an Alpine Linux container with command: sh"
echo "and this project repo ($(pwd)) mounted as '/tmp'"
docker run -it --rm \
--name alpine-test \
-v $(pwd):/tmp \
--workdir /tmp \
alpine:3.6 \
sh
)