HipChat - Private group chat, video chat, instant messaging for teams
Go to file
Andrey Arapov 61b1e19f13
All checks were successful
the build was successful
fix TZ
2019-03-19 15:51:14 +01:00
data trivial 2019-02-01 11:17:32 +01:00
.dockerignore trivial 2019-02-01 11:17:32 +01:00
.drone.yml fix smtp host 2019-02-01 11:24:26 +01:00
docker-compose.sound.yml testing: enable sound 2016-04-14 12:26:13 +02:00
docker-compose.yml fix TZ 2019-03-19 15:51:14 +01:00
Dockerfile fixes 2018-08-22 12:02:09 +02:00
LICENSE Initial commit 2016-04-14 11:33:11 +02:00
README.md fixes 2018-07-04 10:53:07 +02:00
TODO.md testing: enable sound 2016-04-14 12:26:13 +02:00

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