HipChat - Private group chat, video chat, instant messaging for teams
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
Andy 61b1e19f13
the build was successful Detalles
fix TZ
hace 5 años
data trivial hace 5 años
.dockerignore trivial hace 5 años
.drone.yml fix smtp host hace 5 años
Dockerfile fixes hace 6 años
LICENSE Initial commit hace 8 años
README.md fixes hace 6 años
TODO.md testing: enable sound hace 8 años
docker-compose.sound.yml testing: enable sound hace 8 años
docker-compose.yml fix TZ hace 5 años

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" "$@"
}