HipChat - Private group chat, video chat, instant messaging for teams
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
Andy 61b1e19f13
the build was successful Détails
fix TZ
il y a 5 ans
data trivial il y a 5 ans
.dockerignore trivial il y a 5 ans
.drone.yml fix smtp host il y a 5 ans
Dockerfile fixes il y a 6 ans
LICENSE Initial commit il y a 8 ans
README.md fixes il y a 6 ans
TODO.md testing: enable sound il y a 8 ans
docker-compose.sound.yml testing: enable sound il y a 8 ans
docker-compose.yml fix TZ il y a 5 ans

README.md

Running HipChat4 in Docker

# curl -L https://github.com/docker/compose/releases/download/1.7.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
# chmod +x /usr/local/bin/docker-compose
git clone https://github.com/arno01/hipchat.git
cd hipchat
mkdir data
docker-compose run -d

Useful alias

Place the following to your ~/.bash_aliases
After that you can issue hipchat command

function docker_helper() {
  pushd ~/git/github/$1
  docker-compose rm -f "$1"
  docker-compose run -u $(id -u):$(id -g) -d --name "$1" "$@"
  popd
}

function hipchat() {
  docker_helper "$FUNCNAME" "$@"
}