docker-znc/Dockerfile

46 lines
1.3 KiB
Docker
Raw Normal View History

2015-01-06 18:56:01 -08:00
FROM ubuntu:14.04
MAINTAINER Dave P
# Admin user
RUN useradd --create-home --groups sudo admin ; echo "admin:admin" | chpasswd ; locale-gen en
# ZNC user
RUN useradd --create-home znc ; echo "znc:znc" | chpasswd
2015-01-06 19:20:26 -08:00
# Install sshd, znc, and znc extras
RUN mkdir /var/run/sshd ; apt-get update ; apt-get install -y supervisor vim openssh-server znc znc-python znc-dev dpkg-dev
2015-01-06 18:56:01 -08:00
# Get ZNC source
RUN su -c 'cd /home/znc ; apt-get source znc' znc
# Install startup stuff
COPY daemons.conf /etc/supervisor/conf.d/daemons.conf
COPY start /start
RUN chmod +x /start
# Ports
EXPOSE 22
# Pisg dir
RUN mkdir /home/znc/pisg /home/znc/pisg/cache /home/znc/pisg/output
# Pisg and nginx
RUN apt-get install pisg nginx-light
# Set nginx workers to a low number
RNN sed -i -e"s/^worker_processes\s*4/worker_processes 1/" /etc/nginx/nginx.conf
# Set nginx user to ZNC user
RUN sed -i -e"s/^user\s*www\-data/user znc/" /etc/nginx/nginx.conf
# Set nginx root
RUN sed -i -e"s/^\s*root\s*\/usr\/share\/nginx\/html/ root \/home\/znc\/pisg\/output/" /etc/nginx/sites-enabled/default
# Turn off nginx daemon mode
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
# Install crontab
COPY crontab /tmp/
RUN crontab -u znc /tmp/crontab
RUN rm /tmp/crontab
# Install stuff for log generation
COPY pisg.py /home/znc/pisg/
RUN chmod +x /home/znc/pisg/pisg.py
# Expose nginx
EXPOSE 80