HipChat - Private group chat, video chat, instant messaging for teams
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.
 
Andy 84e93272b0
update README
8 years ago
Dockerfile add info about the grsec workarounds 8 years ago
LICENSE Initial commit 8 years ago
README.md update README 8 years ago
TODO.md testing: enable sound 8 years ago
docker-compose.sound.yml testing: enable sound 8 years ago
docker-compose.yml add comment regarding the HiDPI displays 8 years ago

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
docker-compose run -d

Useful alias

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

alias docker="sudo -E docker"
alias docker-compose="sudo -E docker-compose"

function docker_helper() { { pushd ~/docker/$1; docker-compose rm -fa "$1"; docker-compose run -d --name "$1" "$@"; popd; } }
function hipchat() { { docker_helper $FUNCNAME $@; } }