Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binocarlos/docker-hipache
Dockerfile to build hipache
https://github.com/binocarlos/docker-hipache
Last synced: 11 days ago
JSON representation
Dockerfile to build hipache
- Host: GitHub
- URL: https://github.com/binocarlos/docker-hipache
- Owner: binocarlos
- Created: 2013-12-21T13:41:50.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-21T13:47:32.000Z (almost 11 years ago)
- Last Synced: 2024-04-14T14:36:39.374Z (7 months ago)
- Language: Shell
- Size: 105 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
docker-hipache
==============Dockerfile to build hipache
```
from ubuntu
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
RUN apt-get -y update
RUN apt-get -y install wget git redis-server supervisor
run wget -O - http://nodejs.org/dist/v0.8.23/node-v0.8.23-linux-x64.tar.gz | tar -C /usr/local/ --strip-components=1 -zxv
RUN npm install hipache -g
RUN mkdir -p /var/log/supervisor
ADD ./supervisord.conf /etc/supervisor/conf.d/supervisord.conf
ADD ./config.json /usr/local/lib/node_modules/hipache/config/config.json
EXPOSE 80
EXPOSE 6379
CMD ["supervisord", "-n"]
```