2015-11-24 18:35:51 +00:00
|
|
|
FROM cloudron/base:0.8.0
|
2015-04-26 19:45:32 +00:00
|
|
|
|
2015-04-29 02:29:12 +00:00
|
|
|
RUN apt-get update && \
|
2015-08-17 19:09:42 +00:00
|
|
|
apt-get install -y openssh-server && \
|
2015-04-29 02:29:12 +00:00
|
|
|
rm -r /var/cache/apt /var/lib/apt/lists
|
2015-04-29 00:12:16 +00:00
|
|
|
|
2015-04-29 02:29:12 +00:00
|
|
|
ADD supervisor/ /etc/supervisor/conf.d/
|
2015-04-29 00:12:16 +00:00
|
|
|
|
2016-02-01 19:57:53 +00:00
|
|
|
RUN mkdir -p /home/cloudron/gogs
|
2015-06-24 21:26:43 +00:00
|
|
|
## TODO: use redis as well
|
2016-02-01 19:57:53 +00:00
|
|
|
RUN cd /home/cloudron/gogs && \
|
|
|
|
curl -L https://github.com/gogits/gogs/releases/download/v0.8.25/linux_amd64.tar.gz | tar zxvf - --strip-components 1
|
2015-04-26 19:45:32 +00:00
|
|
|
|
2015-10-13 22:27:09 +00:00
|
|
|
# setup config paths
|
2015-04-29 00:12:16 +00:00
|
|
|
ADD app.ini.template /home/cloudron/app.ini.template
|
2015-10-13 22:27:09 +00:00
|
|
|
RUN mkdir -p /run/gogs && chown -R cloudron:cloudron /run/gogs
|
|
|
|
|
|
|
|
# setup log paths
|
2015-11-24 18:52:20 +00:00
|
|
|
RUN mkdir -p /run/gogs && chown -R cloudron:cloudron /run/gogs
|
|
|
|
RUN sed -e 's,^logfile=.*$,logfile=/run/gogs/supervisord.log,' -i /etc/supervisor/supervisord.conf
|
2015-10-13 22:27:09 +00:00
|
|
|
|
2015-10-13 23:12:06 +00:00
|
|
|
RUN ln -s /app/data/ssh /home/cloudron/.ssh
|
2015-10-14 07:19:55 +00:00
|
|
|
RUN ln -s /app/data/gitconfig /home/cloudron/.gitconfig
|
2015-10-13 23:12:06 +00:00
|
|
|
|
2015-04-29 00:12:16 +00:00
|
|
|
ADD start.sh /home/cloudron/start.sh
|
2015-04-26 19:45:32 +00:00
|
|
|
|
2015-04-29 02:29:12 +00:00
|
|
|
# disable pam authentication for sshd
|
2015-11-24 18:52:20 +00:00
|
|
|
RUN sed -e 's/UsePAM yes/UsePAM no/' -e 's/UsePrivilegeSeparation yes/UsePrivilegeSeparation no/' -i /etc/ssh/sshd_config
|
2015-04-29 02:29:12 +00:00
|
|
|
RUN echo "UseDNS no" >> /etc/ssh/sshd_config
|
|
|
|
|
2015-04-29 00:12:16 +00:00
|
|
|
CMD [ "/home/cloudron/start.sh" ]
|
2015-04-26 19:45:32 +00:00
|
|
|
|