HipChat - Private group chat, video chat, instant messaging for teams
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
Andy 61b1e19f13
the build was successful Details
fix TZ
5 년 전
data trivial 5 년 전
.dockerignore trivial 5 년 전
.drone.yml fix smtp host 5 년 전
Dockerfile fixes 6 년 전
LICENSE Initial commit 8 년 전
README.md fixes 6 년 전
TODO.md testing: enable sound 8 년 전
docker-compose.sound.yml testing: enable sound 8 년 전
docker-compose.yml fix TZ 5 년 전

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