remove cron and base off dpedu/base

This commit is contained in:
Dave Pedu 2015-05-16 13:50:18 -07:00
parent 907ee3b1a5
commit a89cb8d89c
2 changed files with 2 additions and 10 deletions

View File

@ -1,8 +1,6 @@
FROM ubuntu:14.04
FROM dpedu/base
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
@ -13,7 +11,7 @@ RUN mkdir /var/run/sshd ; apt-get update ; apt-get install -y supervisor vim ope
RUN su -c 'cd /home/znc ; apt-get source znc' znc
# Set nginx workers to a low number
RUN sed -i -e"s/^worker_processes\s*4/worker_processes 1/" /etc/nginx/nginx.conf
RUN sed -i -e"s/^worker_processes\s*4/worker_processes 2/" /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
# Turn off nginx daemon mode
@ -34,7 +32,6 @@ RUN rm /tmp/crontab
# Install startup stuff
COPY supervisor.conf /etc/supervisor/conf.d/supervisor.conf
COPY nginx.conf /etc/supervisor/conf.d/nginx.conf
COPY cron.conf /etc/supervisor/conf.d/cron.conf
COPY znc.conf /etc/supervisor/conf.d/znc.conf
COPY sshd.conf /etc/supervisor/conf.d/sshd.conf
COPY start /start
@ -44,4 +41,3 @@ RUN chmod +x /start
EXPOSE 22
# nginx
EXPOSE 80

View File

@ -1,4 +0,0 @@
[program:cron]
command=/usr/sbin/cron -f
autorestart=true