- flex-start: Items align to the left side of the container.
- flex-end: Items align to the right side of the container.
- center: Items align at the center of the container.
- space-between: Items display with equal spacing between them.
- space-around: Items display with equal spacing around them.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| option="${1}" | |
| container=$2 | |
| name=$3 | |
| sample=$4 | |
| case ${option} in | |
| -f) FILE=${name} | |
| echo "Pulling solr 6.4 from dockerhub"$'\n' | |
| docker pull solr:6.4 | |
| echo "Connecting and transferring files to docker image"$'\n' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // Upload Hyper to github sync settings | |
| syncSettings: { | |
| quiet: false, | |
| accelerators: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Pure theme for Hyper | |
| autoload -U promptinit; promptinit | |
| prompt pure | |
| # AutoComplete for Zsh | |
| autoload -Uz compinit && compinit | |
| zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' |