You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

961 lines
26 KiB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
  1. #!/bin/bash
  2. ## Bash wrap script to launch the ``compose`` docker with right options.
  3. ##
  4. ##
  5. ## Launcher
  6. ## - should need minimum requirement to run
  7. ## - no shell libs
  8. ##
  9. [[ "${BASH_SOURCE[0]}" != "${0}" ]] && SOURCED=true
  10. ##
  11. ## From kal-shlib
  12. ##
  13. ANSI_ESC=$'\e['
  14. md5_compat() {
  15. if get_path md5sum >/dev/null; then
  16. md5_compat() { md5sum | cut -c -32; }
  17. elif get_path md5 >/dev/null; then
  18. md5_compat() { md5; }
  19. else
  20. die "$exname: required GNU or BSD date not found"
  21. fi
  22. md5_compat
  23. }
  24. ## output on stdout the next record on stdin separated by a '\0'
  25. next-0() {
  26. local ans IFS=''
  27. read -r -d '' ans &&
  28. echo -n "$ans"
  29. }
  30. array_read-0() {
  31. local elt aname
  32. while true; do
  33. for aname in "$@"; do
  34. declare -n cur="$aname"
  35. elt="$(next-0)" || return 0
  36. cur+=("$elt")
  37. done
  38. done
  39. }
  40. str_pattern_matches() {
  41. local str="$1"
  42. shift
  43. for pattern in "$@"; do
  44. eval "[[ \"$str\" == $pattern ]]" && return 0
  45. done
  46. return 1
  47. }
  48. ansi_color() {
  49. local choice="$1"
  50. if [ "$choice" == "tty" ]; then
  51. if [ -t 1 ]; then
  52. choice="yes"
  53. else
  54. choice="no"
  55. fi
  56. fi
  57. if [ "$choice" != "no" ]; then
  58. SET_COL_CHAR="${ANSI_ESC}${COL_CHAR}G"
  59. SET_COL_STATUS="${ANSI_ESC}${COL_STATUS}G"
  60. SET_COL_INFO="${ANSI_ESC}${COL_INFO}G"
  61. SET_COL_ELT="${ANSI_ESC}${COL_ELT}G"
  62. SET_BEGINCOL="${ANSI_ESC}0G"
  63. UP="${ANSI_ESC}1A"
  64. DOWN="${ANSI_ESC}1B"
  65. LEFT="${ANSI_ESC}1D"
  66. RIGHT="${ANSI_ESC}1C"
  67. SAVE="${ANSI_ESC}7"
  68. RESTORE="${ANSI_ESC}8"
  69. NORMAL="${ANSI_ESC}0m"
  70. GRAY="${ANSI_ESC}1;30m"
  71. RED="${ANSI_ESC}1;31m"
  72. GREEN="${ANSI_ESC}1;32m"
  73. YELLOW="${ANSI_ESC}1;33m"
  74. BLUE="${ANSI_ESC}1;34m"
  75. PINK="${ANSI_ESC}1;35m"
  76. CYAN="${ANSI_ESC}1;36m"
  77. WHITE="${ANSI_ESC}1;37m"
  78. DARKGRAY="${ANSI_ESC}0;30m"
  79. DARKRED="${ANSI_ESC}0;31m"
  80. DARKGREEN="${ANSI_ESC}0;32m"
  81. DARKYELLOW="${ANSI_ESC}0;33m"
  82. DARKBLUE="${ANSI_ESC}0;34m"
  83. DARKPINK="${ANSI_ESC}0;35m"
  84. DARKCYAN="${ANSI_ESC}0;36m"
  85. DARKWHITE="${ANSI_ESC}0;37m"
  86. SUCCESS=$GREEN
  87. WARNING=$YELLOW
  88. FAILURE=$RED
  89. NOOP=$BLUE
  90. ON=$SUCCESS
  91. OFF=$FAILURE
  92. ERROR=$FAILURE
  93. else
  94. SET_COL_CHAR=
  95. SET_COL_STATUS=
  96. SET_COL_INFO=
  97. SET_COL_ELT=
  98. SET_BEGINCOL=
  99. NORMAL=
  100. RED=
  101. GREEN=
  102. YELLOW=
  103. BLUE=
  104. GRAY=
  105. WHITE=
  106. DARKGRAY=
  107. DARKRED=
  108. DARKGREEN=
  109. DARKYELLOW=
  110. DARKBLUE=
  111. DARKPINK=
  112. DARKCYAN=
  113. SUCCESS=
  114. WARNING=
  115. FAILURE=
  116. NOOP=
  117. ON=
  118. OFF=
  119. ERROR=
  120. fi
  121. ansi_color="$choice"
  122. export SET_COL_CHAR SET_COL_STATUS SET_COL_INFO SET_COL_ELT \
  123. SET_BEGINCOL UP DOWN LEFT RIGHT SAVE RESTORE NORMAL \
  124. GRAY RED GREEN YELLOW BLUE PINK CYAN WHITE DARKGRAY \
  125. DARKRED DARKGREEN DARKYELLOW DARKBLUE DARKPINK DARKCYAN \
  126. SUCCESS WARNING FAILURE NOOP ON OFF ERROR ansi_color
  127. }
  128. e() { printf "%s" "$*"; }
  129. warn() { e "${YELLOW}Warning:$NORMAL" "$*"$'\n' >&2 ; }
  130. info() { e "${BLUE}II$NORMAL" "$*"$'\n' >&2 ; }
  131. verb() { [ -z "$VERBOSE" ] || e "$*"$'\n' >&2; }
  132. debug() { [ -z "$DEBUG" ] || e "$*"$'\n' >&2; }
  133. err() { e "${RED}Error:$NORMAL $*"$'\n' >&2 ; }
  134. die() { err "$@" ; exit 1; }
  135. ## equivalent of 'xargs echo' with builtins
  136. nspc() {
  137. local content
  138. content=$(printf "%s " $(cat -))
  139. printf "%s" "${content::-1}"
  140. }
  141. get_path() { (
  142. IFS=:
  143. for d in $PATH; do
  144. filename="$d/$1"
  145. [ -f "$filename" -a -x "$filename" ] && {
  146. echo "$d/$1"
  147. return 0
  148. }
  149. done
  150. return 1
  151. ) }
  152. depends() {
  153. ## Avoid colliding with variables that are created with depends.
  154. local __i __path __new_name
  155. for __i in "$@"; do
  156. if ! __path=$(get_path "$__i"); then
  157. __new_name="$(echo "${__i//-/_}")"
  158. if [ "$__new_name" != "$__i" ]; then
  159. depends "$__new_name"
  160. else
  161. err "dependency check: couldn't find '$__i' required command."
  162. exit 1
  163. fi
  164. else
  165. if ! test -z "$__path" ; then
  166. export "$(echo "${__i//- /__}")"="$__path"
  167. fi
  168. fi
  169. done
  170. }
  171. get_os() {
  172. local uname_output
  173. uname_output="$(uname -s)"
  174. case "${uname_output}" in
  175. Linux*) e linux;;
  176. Darwin*) e mac;;
  177. CYGWIN*) e cygwin;;
  178. MINGW*) e mingw;;
  179. *) e "UNKNOWN:${uname_output}";;
  180. esac
  181. }
  182. read-0() {
  183. local eof= IFS=''
  184. while [ "$1" ]; do
  185. read -r -d '' -- "$1" || eof=1
  186. shift
  187. done
  188. [ -z "$eof" ]
  189. }
  190. read-0a() {
  191. local eof= IFS=''
  192. while [ "$1" ]; do
  193. IFS='' read -r -d $'\n' -- "$1" || eof=1
  194. shift
  195. done
  196. [ -z "$eof" ]
  197. }
  198. p0() {
  199. printf "%s\0" "$@"
  200. }
  201. cla.normalize() {
  202. local letters arg i
  203. while [ "$#" != 0 ]; do
  204. arg=$1
  205. case "$arg" in
  206. --)
  207. p0 "$@"
  208. return 0
  209. ;;
  210. --*=*|-*=*)
  211. shift
  212. set -- "${arg%%=*}" "${arg#*=}" "$@"
  213. continue
  214. ;;
  215. --*|-?) :;;
  216. -*)
  217. letters=${arg:1}
  218. shift
  219. i=${#letters}
  220. while ((i--)); do
  221. set -- -${letters:$i:1} "$@"
  222. done
  223. continue
  224. ;;
  225. esac
  226. p0 "$arg"
  227. shift
  228. done
  229. }
  230. docker_has_image() {
  231. local image="$1"
  232. images=$(docker images -q "$image" 2>/dev/null) || {
  233. err "docker images call has failed unexpectedly."
  234. return 1
  235. }
  236. [ -n "$images" ]
  237. }
  238. docker_image_id() {
  239. local image="$1"
  240. image_id=$(docker inspect "$image" --format='{{.Id}}') || return 1
  241. echo "$image_id"
  242. }
  243. ##
  244. ## Compose-core common functions
  245. ##
  246. list_compose_vars() {
  247. while read-0a def; do
  248. def="${def##* }"
  249. def="${def%=*}"
  250. p0 "$def"
  251. done < <(declare -p | grep "^declare -x COMPOSE_[A-Z_]\+=\"")
  252. }
  253. get_running_compose_containers() {
  254. ## XXXvlab: docker bug: there will be a final newline anyway
  255. docker ps --filter label="compose.service" --format='{{.ID}}'
  256. }
  257. get_volumes_for_container() {
  258. local container="$1"
  259. docker inspect \
  260. --format '{{range $mount := .Mounts}}{{$mount.Source}}{{"\x00"}}{{$mount.Destination}}{{"\x00"}}{{end}}' \
  261. "$container"
  262. }
  263. is_volume_used() {
  264. local volume="$1"
  265. while read container_id; do
  266. while read-0 src dst; do
  267. [ "$src" == "$volume" ] && return 0
  268. done < <(get_volumes_for_container "$container_id")
  269. done < <(get_running_compose_containers)
  270. return 1
  271. }
  272. _MULTIOPTION_REGEX='^((-[a-zA-Z]|--[a-zA-Z0-9-]+)(, )?)+'
  273. _MULTIOPTION_REGEX_LINE_FILTER=$_MULTIOPTION_REGEX'(\s|=)'
  274. ##
  275. ## compose launcher functions
  276. ##
  277. clean_unused_sessions() {
  278. for f in "$SESSION_DIR/"*; do
  279. [ -e "$f" ] || continue
  280. is_volume_used "$f" && continue
  281. ## XXXvlab: the second rmdir should not be useful
  282. rm -f "$f" >/dev/null || rmdir "$f" >/dev/null || {
  283. debug "Unexpected session remnants $f"
  284. }
  285. done
  286. }
  287. check_no_links_subdirs() {
  288. local dir
  289. for dir in "$@"; do
  290. [ -d "$dir" ] || continue
  291. if [ -L "$dir" ]; then
  292. err "Unfortunately, this compose launcher do not support yet symlinks in charm-store."
  293. echo " Found symlink in charm-store: $dir" >&2
  294. return 1
  295. fi
  296. [ -e "$dir/metadata.yml" ] && continue
  297. check_no_links_subdirs "$dir"/* || return 1
  298. done
  299. }
  300. ## requires docker_run_opts to be set
  301. get_compose_file_opt() {
  302. local compose_docker_image="$1" hash override
  303. shift
  304. image_id=$(docker_image_id "$compose_docker_image")
  305. override=$(get_volume_opt "${docker_run_opts[@]}") || return 1
  306. if [ -n "$override" ]; then
  307. if ! [ -f "$override" ]; then
  308. err "Invalid override of 'compose-core' detected. File '$override' does not exist on host."
  309. return 1
  310. fi
  311. hash=$( { p0 "$image_id"; cat "$override"; } | md5_compat)
  312. else
  313. hash=$(p0 "$image_id" | md5_compat)
  314. fi
  315. _get_compose_file_opt "$hash" "$override" "$@" || return 1
  316. }
  317. _get_compose_file_opt() {
  318. local hash_bin="$1" override="$2" \
  319. cache_file="$COMPOSE_LAUNCHER_CACHE/$FUNCNAME.cache.$(p0 "$@" | md5_compat)"
  320. if [ -e "$cache_file" ]; then
  321. cat "$cache_file" &&
  322. touch "$cache_file" || return 1
  323. return 0
  324. fi
  325. shift 2
  326. DC_MATCH_MULTI=$(get_compose_multi_opts_list "$hash_bin" "$override") || return 1
  327. DC_MATCH_SINGLE=$(get_compose_single_opts_list "$hash_bin" "$override") || return 1
  328. while read-0 arg; do
  329. case "$arg" in
  330. "-f"|"--file")
  331. read-0 value
  332. e "$value"
  333. return 0
  334. ;;
  335. --*|-*)
  336. if str_pattern_matches "$arg" $DC_MATCH_MULTI; then
  337. read-0 value
  338. opts+=("$arg" "$value")
  339. shift
  340. elif str_pattern_matches "$arg" $DC_MATCH_SINGLE; then
  341. opts+=("$arg")
  342. else
  343. debug "Unknown option '$arg'. Didn't manage to pre-parse correctly options."
  344. return 1
  345. fi
  346. ;;
  347. *)
  348. return 1
  349. ;;
  350. esac
  351. done < <(cla.normalize "$@") | tee "$cache_file"
  352. }
  353. replace_compose_file_opt() {
  354. local compose_docker_image="$1" hash override
  355. shift
  356. image_id=$(docker_image_id "$compose_docker_image")
  357. override=$(get_volume_opt "${docker_run_opts[@]}") || return 1
  358. if [ -n "$override" ]; then
  359. if ! [ -f "$override" ]; then
  360. err "Invalid override of 'compose-core' detected. File '$override' does not exist on host."
  361. return 1
  362. fi
  363. hash=$( { p0 "$image_id"; cat "$override"; } | md5_compat)
  364. else
  365. hash=$(p0 "$image_id" | md5_compat)
  366. fi
  367. _replace_compose_file_opt "$hash" "$override" "$@" || return 1
  368. }
  369. _replace_compose_file_opt() {
  370. local hash_bin="$1" override="$2" \
  371. cache_file="$COMPOSE_LAUNCHER_CACHE/$FUNCNAME.cache.$(p0 "$@" | md5_compat)"
  372. if [ -e "$cache_file" ]; then
  373. cat "$cache_file" &&
  374. touch "$cache_file" || return 1
  375. return 0
  376. fi
  377. debug "Replacing '-f|--file' argument in command line."
  378. shift 2
  379. DC_MATCH_MULTI=$(get_compose_multi_opts_list "$hash_bin" "$override") || return 1
  380. DC_MATCH_SINGLE=$(get_compose_single_opts_list "$hash_bin" "$override") || return 1
  381. args=()
  382. while read-0 arg; do
  383. case "$arg" in
  384. "-f"|"--file")
  385. read-0 value
  386. args+=("$arg" "${value##*/}")
  387. ;;
  388. --*|-*)
  389. if str_pattern_matches "$arg" $DC_MATCH_MULTI; then
  390. read-0 value
  391. args+=("$arg" "$value")
  392. shift
  393. elif str_pattern_matches "$arg" $DC_MATCH_SINGLE; then
  394. args+=("$arg")
  395. else
  396. err "Unknown option '$arg'. Didn't manage to pre-parse correctly options."
  397. return 1
  398. fi
  399. ;;
  400. *)
  401. args+=("$arg")
  402. while read-0 arg; do
  403. args+=("$arg")
  404. done
  405. ;;
  406. esac
  407. done < <(cla.normalize "$@")
  408. p0 "${args[@]}" | tee "$cache_file"
  409. }
  410. get_compose_opts_list() {
  411. local hash_bin="$1" override="$2" \
  412. cache_file="$COMPOSE_LAUNCHER_CACHE/$FUNCNAME.cache.$1"
  413. if [ -e "$cache_file" ]; then
  414. cat "$cache_file" &&
  415. touch "$cache_file" || return 1
  416. return 0
  417. fi
  418. debug "Pre-Launching docker to retrieve command line argument definitions."
  419. opts_list=()
  420. if [ -n "$override" ]; then
  421. opts_list+=("-v" "$override:/usr/local/bin/compose-core:ro")
  422. fi
  423. compose_opts_help=$(docker run "${opts_list[@]}" "$COMPOSE_DOCKER_IMAGE" --help 2>/dev/null)
  424. echo "$compose_opts_help" |
  425. grep '^Options:' -A 20000 |
  426. tail -n +2 |
  427. { cat ; echo; } |
  428. grep -E -m 1 "^\S*\$" -B 10000 |
  429. head -n -1 |
  430. grep -E "^\s+-" |
  431. sed -r 's/\s+((((-[a-zA-Z]|--[a-zA-Z0-9-]+)( [A-Z=]+|=[^ ]+)?)(, )?)+)\s+.*$/\1/g' |
  432. tee "$cache_file" || return 1
  433. }
  434. multi_opts_filter() {
  435. grep -E "$_MULTIOPTION_REGEX_LINE_FILTER" |
  436. sed -r "s/^($_MULTIOPTION_REGEX)(\s|=).*$/\1/g" |
  437. tr ',' "\n" | nspc
  438. }
  439. single_opts_filter() {
  440. grep -E -v "$_MULTIOPTION_REGEX_LINE_FILTER" |
  441. tr ',' "\n" | nspc
  442. }
  443. get_compose_multi_opts_list() {
  444. local hash_bin="$1" override="$2" \
  445. cache_file="$COMPOSE_LAUNCHER_CACHE/$FUNCNAME.cache.$1" opts_list
  446. if [ -e "$cache_file" ]; then
  447. cat "$cache_file" &&
  448. touch "$cache_file" || return 1
  449. return 0
  450. fi
  451. opts_list=$(get_compose_opts_list "$hash_bin" "$override") || return 1
  452. echo "$opts_list" | multi_opts_filter | tee "$cache_file"
  453. }
  454. get_compose_single_opts_list() {
  455. local hash_bin="$1" override="$2" \
  456. cache_file="$COMPOSE_LAUNCHER_CACHE/$FUNCNAME.cache.$1" opts_list
  457. if [ -e "$cache_file" ]; then
  458. cat "$cache_file" &&
  459. touch "$cache_file" || return 1
  460. return 0
  461. fi
  462. opts_list=$(get_compose_opts_list "$hash_bin" "$override") || return 1
  463. echo "$opts_list" | single_opts_filter | tee "$cache_file"
  464. }
  465. get_volume_opt() {
  466. local cache_file="$COMPOSE_LAUNCHER_CACHE/$FUNCNAME.cache.$(p0 "$@" | md5_compat)"
  467. if [ -e "$cache_file" ]; then
  468. cat "$cache_file" &&
  469. touch "$cache_file" || return 1
  470. return 0
  471. fi
  472. while [ "$#" != 0 ]; do
  473. case "$1" in
  474. "-v")
  475. dst="${2#*:}"
  476. dst="${dst%:*}"
  477. if [ "$dst" == "/usr/local/bin/compose-core" ]; then
  478. override="${2%%:*}"
  479. debug "Override of compose-core found: $override"
  480. fi
  481. shift;;
  482. "-e"|"-w")
  483. shift;;
  484. *)
  485. :
  486. ;;
  487. esac
  488. shift
  489. done
  490. { [ -n "$override" ] && echo "$override"; } | tee "$cache_file"
  491. }
  492. get_tz() {
  493. if [ -n "$TZ" ]; then
  494. :
  495. elif [ -n "$COMPOSE_LOCAL_ROOT" ] && ## previous compose run
  496. [ -e "$COMPOSE_LOCAL_ROOT/etc/timezone" ]; then
  497. read -r TZ < "$COMPOSE_LOCAL_ROOT/etc/timezone"
  498. elif [ -e "/etc/timezone" ]; then ## debian host system timezone
  499. read -r TZ < /etc/timezone
  500. elif [ -e "/etc/localtime" ]; then ## redhat and macosx sys timezone
  501. local fullpath dirname
  502. fullpath="$(readlink -f /etc/localtime)"
  503. dirname="${fullpath%/*}"
  504. TZ=${TZ:-${fullpath##*/}/${dirname##*/}}
  505. else
  506. err "Timezone not found nor inferable !"
  507. echo " compose relies on '/etc/timezone' or '/etc/localtime' to be present " >&2
  508. echo " so as to ensure same timezone for all containers that need it." >&2
  509. echo >&2
  510. echo " You can set a default value for compose by create issuing:" >&2
  511. echo >&2
  512. if [ -n "$COMPOSE_LOCAL_ROOT" ] && [ "$UID" != 0 ]; then
  513. echo " mkdir -p $COMPOSE_LOCAL_ROOT/etc &&" >&2
  514. echo " echo \"Europe/Paris\" > $COMPOSE_LOCAL_ROOT/etc/timezone" >&2
  515. else
  516. echo " echo \"Europe/Paris\" > /etc/timezone" >&2
  517. fi
  518. echo >&2
  519. echo " Of course, you can change 'Europe/Paris' value by any other valid timezone." >&2
  520. echo " timezone." >&2
  521. echo >&2
  522. echo " Notice you can also use \$TZ environment variable, but the value" >&2
  523. echo " will be necessary each time you launch compose." >&2
  524. echo >&2
  525. return 1
  526. fi
  527. e "$TZ"
  528. }
  529. pretty_print() {
  530. while [ "$#" != 0 ]; do
  531. case "$1" in
  532. "-v"|"-e"|"-w")
  533. e "$1" "$2" "\\"$'\n'
  534. shift;;
  535. *)
  536. e "$1 ";;
  537. esac
  538. shift
  539. done
  540. }
  541. set_os() {
  542. OS="$(get_os)"
  543. case "$OS" in
  544. linux)
  545. COMPOSE_LOCAL_ROOT=${COMPOSE_LOCAL_ROOT:-"$HOME/.compose"}
  546. COMPOSE_VAR=${COMPOSE_VAR:-/var/lib/compose}
  547. COMPOSE_CACHE=${COMPOSE_CACHE:-/var/cache/compose}
  548. DATASTORE=${DATASTORE:-/srv/datastore/data}
  549. CONFIGSTORE=${CONFIGSTORE:-/srv/datastore/config}
  550. if [ "$UID" == 0 ]; then
  551. SESSION_DIR=${SESSION_DIR:-"$COMPOSE_VAR"/sessions}
  552. CHARM_STORE=${CHARM_STORE:-/srv/charm-store}
  553. TZ_PATH=${TZ_PATH:-"$COMPOSE_VAR"/timezones}
  554. COMPOSE_LAUNCHER_CACHE=${COMPOSE_LAUNCHER_CACHE:-"$COMPOSE_CACHE"}
  555. else
  556. SESSION_DIR=${SESSION_DIR:-"$COMPOSE_LOCAL_ROOT"/sessions}
  557. CHARM_STORE=${CHARM_STORE:-"$HOME"/.charm-store}
  558. TZ_PATH=${TZ_PATH:-"$COMPOSE_LOCAL_ROOT"/timezones}
  559. COMPOSE_LAUNCHER_CACHE=${COMPOSE_LAUNCHER_CACHE:-"$COMPOSE_LOCAL_ROOT"/cache}
  560. fi
  561. ;;
  562. mac)
  563. COMPOSE_LOCAL_ROOT=${COMPOSE_LOCAL_ROOT:-"$HOME/.compose"}
  564. COMPOSE_VAR=${COMPOSE_VAR:-"$COMPOSE_LOCAL_ROOT"/lib}
  565. COMPOSE_CACHE=${COMPOSE_CACHE:-"$COMPOSE_LOCAL_ROOT"/cache}
  566. SESSION_DIR=${SESSION_DIR:-"$COMPOSE_LOCAL_ROOT"/sessions}
  567. DATASTORE=${DATASTORE:-"$COMPOSE_LOCAL_ROOT"/data}
  568. CONFIGSTORE=${CONFIGSTORE:-"$COMPOSE_LOCAL_ROOT"/config}
  569. CHARM_STORE=${CHARM_STORE:-"$HOME"/.charm-store}
  570. TZ_PATH=${TZ_PATH:-"$COMPOSE_LOCAL_ROOT"/timezones}
  571. COMPOSE_LAUNCHER_CACHE=${COMPOSE_LAUNCHER_CACHE:-"$COMPOSE_LOCAL_ROOT"/cache}
  572. ;;
  573. *)
  574. echo "System '$os' not supported yet." >&2
  575. return 1
  576. ;;
  577. esac
  578. }
  579. mk_docker_run_options() {
  580. ## Order matters, files get to override vars
  581. compose_config_files=(
  582. ## DEFAULT LINUX VARS
  583. /etc/default/charm
  584. /etc/default/datastore
  585. /etc/default/compose
  586. ## COMPOSE SYSTEM-WIDE FILES
  587. /etc/compose.conf
  588. /etc/compose.local.conf
  589. /etc/compose/local.conf
  590. ## COMPOSE USER FILES
  591. ~/.compose/etc/local.conf
  592. ~/.compose.conf
  593. )
  594. set_os || return 1
  595. docker_run_opts=("-v" "/var/run/docker.sock:/var/run/docker.sock")
  596. ##
  597. ## Load config files
  598. ##
  599. if [ -z "$DISABLE_SYSTEM_CONFIG_FILE" ]; then
  600. ## XXXvlab: should provide YML config opportunities in possible parent dirs ?
  601. ## userdir ? and global /etc/compose.yml ?
  602. for cfgfile in "${compose_config_files[@]}"; do
  603. [ -e "$cfgfile" ] || continue
  604. docker_run_opts+=("-v" "$cfgfile:$cfgfile:ro")
  605. . "$cfgfile"
  606. done
  607. else
  608. docker_run_opts+=("-e" "DISABLE_SYSTEM_CONFIG_FILE=$DISABLE_SYSTEM_CONFIG_FILE")
  609. fi
  610. mkdir -p "$COMPOSE_LAUNCHER_CACHE" || return 1
  611. ## get TZ value and prepare TZ_PATH
  612. TZ=$(get_tz) || return 1
  613. mkdir -p "${TZ_PATH}"
  614. TZ_PATH="${TZ_PATH}/$(e "$TZ" | sha256sum | cut -c 1-8)" || return 1
  615. [ -e "$TZ_PATH" ] || e "$TZ" > "$TZ_PATH"
  616. ## CACHE/DATA DIRS
  617. docker_run_opts+=("-v" "$COMPOSE_VAR:/var/lib/compose")
  618. docker_run_opts+=("-v" "$COMPOSE_CACHE:/var/cache/compose")
  619. docker_run_opts+=("-v" "$TZ_PATH:/etc/timezone:ro")
  620. ##
  621. ## Checking vars
  622. ##
  623. ## CHARM_STORE
  624. [ -e "$CHARM_STORE" ] || mkdir -p "$CHARM_STORE" || return 1
  625. [ -L "$CHARM_STORE" ] && {
  626. CHARM_STORE=$(readlink -f "$CHARM_STORE") || return 1
  627. }
  628. docker_run_opts+=(
  629. "-v" "$CHARM_STORE:/srv/charm-store:ro"
  630. "-e" "CHARM_STORE=/srv/charm-store"
  631. "-e" "HOST_CHARM_STORE=$CHARM_STORE"
  632. )
  633. check_no_links_subdirs "$CHARM_STORE"/* || return 1
  634. ## DEFAULT_COMPOSE_FILE
  635. if [ "${DEFAULT_COMPOSE_FILE+x}" ]; then
  636. DEFAULT_COMPOSE_FILE=$(realpath "$DEFAULT_COMPOSE_FILE")
  637. dirname=$(dirname "$DEFAULT_COMPOSE_FILE")/
  638. if [ -e "${DEFAULT_COMPOSE_FILE}" ]; then
  639. docker_run_opts+=("-v" "$dirname:$dirname:ro")
  640. fi
  641. fi
  642. ## COMPOSE_YML_FILE
  643. if [ "${COMPOSE_YML_FILE+x}" ]; then
  644. if [ -e "${COMPOSE_YML_FILE}" ]; then
  645. docker_run_opts+=(
  646. "-v" "$COMPOSE_YML_FILE:/tmp/compose.yml:ro"
  647. "-e" "COMPOSE_YML_FILE=/tmp/compose.yml"
  648. "-e" "HOST_COMPOSE_YML_FILE=/tmp/compose.yml"
  649. )
  650. fi
  651. fi
  652. ## DATASTORE and CONFIGSTORE
  653. docker_run_opts+=(
  654. "-v" "$DATASTORE:/srv/datastore/data:rw"
  655. "-e" "DATASTORE=/srv/datastore/data"
  656. "-e" "HOST_DATASTORE=$DATASTORE"
  657. "-v" "$CONFIGSTORE:/srv/datastore/config:rw"
  658. "-e" "CONFIGSTORE=/srv/datastore/config"
  659. "-e" "HOST_CONFIGSTORE=$CONFIGSTORE"
  660. )
  661. docker_run_opts+=("-v" "$HOME/.docker:/root/.docker")
  662. COMPOSE_DOCKER_IMAGE=${COMPOSE_DOCKER_IMAGE:-docker.0k.io/compose}
  663. docker_run_opts+=("-e" "COMPOSE_DOCKER_IMAGE=$COMPOSE_DOCKER_IMAGE")
  664. if ! docker_has_image "$COMPOSE_DOCKER_IMAGE"; then
  665. docker pull "$COMPOSE_DOCKER_IMAGE" || return 1
  666. fi
  667. ## SSH config
  668. docker_run_opts+=(
  669. "-v" "$HOME/.ssh:/root/.ssh:ro"
  670. "-v" "/etc/ssh:/etc/ssh:ro"
  671. )
  672. COMPOSE_LAUNCHER_BIN=$(readlink -f "${BASH_SOURCE[0]}")
  673. docker_run_opts+=("-v" "$COMPOSE_LAUNCHER_BIN:/usr/local/bin/compose")
  674. while read-0 var; do
  675. case "$var" in
  676. COMPOSE_YML_FILE|COMPOSE_LAUNCHER_BIN|COMPOSE_DOCKER_IMAGE|\
  677. COMPOSE_LAUNCHER_OPTS|COMPOSE_VAR|COMPOSE_CACHE)
  678. :
  679. ;;
  680. *)
  681. docker_run_opts+=("-e" "$var=${!var}")
  682. ;;
  683. esac
  684. done < <(list_compose_vars)
  685. compose_file=$(get_compose_file_opt "$COMPOSE_DOCKER_IMAGE" "$@") || return 1
  686. if [ -z "$compose_file" ]; then
  687. ## Find a compose.yml in parents
  688. debug "No config file specified on command line arguments"
  689. debug "Looking for 'compose.yml' in self and parents.."
  690. if parent=$(while true; do
  691. [ -e "./compose.yml" ] && {
  692. echo "$PWD"
  693. exit 0
  694. }
  695. [ "$PWD" == "/" ] && return 1
  696. cd ..
  697. done
  698. ); then
  699. compose_file="$(realpath "$parent"/"compose.yml")"
  700. debug " .. found '$compose_file'"
  701. else
  702. debug " .. not found."
  703. fi
  704. fi
  705. if [ -n "$compose_file" ]; then
  706. if ! [ -f "$compose_file" ]; then
  707. die "Specified compose file '$compose_file' not found."
  708. fi
  709. compose_file="$(realpath "$compose_file")"
  710. parent_dir="${compose_file%/*}"
  711. docker_path=/var/lib/compose/root/${parent_dir##*/}/${compose_file##*/}
  712. docker_run_opts+=(
  713. "-e" "COMPOSE_YML_FILE=${compose_file##*/}"
  714. "-v" "${compose_file}:${docker_path}:ro"
  715. "-w" "${docker_path%/*}"
  716. )
  717. else
  718. docker_path=/var/lib/compose/root
  719. docker_run_opts+=(
  720. "-w" "${docker_path}"
  721. )
  722. fi
  723. clean_unused_sessions
  724. filename=$(mktemp -p /tmp/ -t launch_opts-XXXXXXXXXXXXXXXX)
  725. p0 "${docker_run_opts[@]}" > "$filename"
  726. sha=$(sha256sum "$filename")
  727. sha=${sha:0:64}
  728. src="$SESSION_DIR/$UID-$sha"
  729. dest="/var/lib/compose/sessions/$UID-$sha"
  730. {
  731. p0 "-v" "$SESSION_DIR/$UID-$sha:$dest:ro"
  732. p0 "-e" "COMPOSE_LAUNCHER_OPTS=$dest"
  733. p0 "-e" "COMPOSE_LAUNCHER_BIN=$COMPOSE_LAUNCHER_BIN"
  734. } >> "$filename"
  735. mkdir -p "$SESSION_DIR" || return 1
  736. mv -f "$filename" "$SESSION_DIR/$UID-$sha" || return 1
  737. e "$SESSION_DIR/$UID-$sha"
  738. if [ -n "$DEBUG" ]; then
  739. echo "${WHITE}Environment:${NORMAL}"
  740. echo " COMPOSE_DOCKER_IMAGE: $COMPOSE_DOCKER_IMAGE"
  741. echo " CHARM_STORE: $CHARM_STORE"
  742. echo " DATASTORE: $DATASTORE"
  743. echo " CONFIGSTORE: $CONFIGSTORE"
  744. echo " COMPOSE_VAR: $COMPOSE_VAR"
  745. echo " COMPOSE_CACHE: $COMPOSE_CACHE"
  746. echo " COMPOSE_LAUNCHER_CACHE: $COMPOSE_LAUNCHER_CACHE"
  747. echo " SESSION_DIR: $SESSION_DIR"
  748. echo " TZ_PATH: $TZ_PATH"
  749. fi >&2
  750. }
  751. run() {
  752. local os docker_run_opts
  753. docker_run_opts=()
  754. if [ -z "$COMPOSE_LAUNCHER_OPTS" ]; then
  755. COMPOSE_LAUNCHER_OPTS="$(mk_docker_run_options "$@")" || return 1
  756. fi
  757. while read-0 opt; do
  758. docker_run_opts+=("$opt")
  759. ## catch COMPOSE_DOCKER_IMAGE
  760. if [[ "$env" == "true" && "$opt" == "COMPOSE_DOCKER_IMAGE="* ]]; then
  761. COMPOSE_DOCKER_IMAGE=${opt##COMPOSE_DOCKER_IMAGE=}
  762. elif [ "$opt" == "-e" ]; then
  763. env=true
  764. else
  765. env=
  766. fi
  767. done < <(cat "$COMPOSE_LAUNCHER_OPTS")
  768. set_os
  769. array_read-0 cmd_args < <(replace_compose_file_opt "$COMPOSE_DOCKER_IMAGE" "$@")
  770. set -- "${cmd_args[@]}"
  771. [ -t 0 ] && docker_run_opts+=("-i")
  772. [ -t 1 ] && docker_run_opts+=("-t")
  773. if [ -n "$DEBUG" ] || [ -n "$DRY_RUN" ]; then
  774. debug "${WHITE}Launching:${NORMAL}"
  775. echo "docker run --rm \\"
  776. pretty_print "${docker_run_opts[@]}" | sed -r 's/^/ /g;s/([^\])$/\1\\\n/g'
  777. if [ -z "$ENTER" ]; then
  778. echo " ${COMPOSE_DOCKER_IMAGE} \\"
  779. echo " " "$@"
  780. else
  781. echo " --entrypoint bash \\"
  782. echo " ${COMPOSE_DOCKER_IMAGE}"
  783. fi
  784. fi | { if [ -n "$DEBUG" ]; then sed -r 's/^/ /g'; else cat; fi } >&2
  785. if [ -z "$DRY_RUN" ]; then
  786. debug "${WHITE}Execution:${NORMAL}"
  787. if [ -z "$ENTER" ]; then
  788. exec docker run --rm "${docker_run_opts[@]}" "${COMPOSE_DOCKER_IMAGE}" "$@"
  789. else
  790. exec docker run --rm "${docker_run_opts[@]}" \
  791. --entrypoint bash \
  792. "${COMPOSE_DOCKER_IMAGE}"
  793. fi
  794. fi
  795. }
  796. [ "$SOURCED" ] && return 0
  797. ##
  798. ## Code
  799. ##
  800. depends docker cat readlink sed realpath tee sed grep tail
  801. ansi_color "${ansi_color:-tty}"
  802. run "$@"