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.
the build was successful
Details
|
4 years ago | |
---|---|---|
data | 4 years ago | |
.dockerignore | 4 years ago | |
.drone.yml | 4 years ago | |
Dockerfile | 5 years ago | |
LICENSE | 7 years ago | |
README.md | 5 years ago | |
TODO.md | 7 years ago | |
docker-compose.sound.yml | 7 years ago | |
docker-compose.yml | 4 years ago |
README.md
Running HipChat4 in Docker
-
- Install docker-compose
# 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
-
- Run the hipchat
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" "$@"
}