2021-02-22 19:04:36 +00:00
|
|
|
FROM cloudron/base:3.0.0@sha256:455c70428723e3a823198c57472785437eb6eab082e79b3ff04ea584faf46e92
|
2017-05-05 11:19:38 +00:00
|
|
|
|
2020-05-05 08:51:50 +00:00
|
|
|
RUN mkdir -p /app/code
|
2017-05-05 11:19:38 +00:00
|
|
|
WORKDIR /app/code
|
|
|
|
|
2021-07-12 16:10:17 +00:00
|
|
|
ARG VERSION=1.17.0
|
2021-04-06 07:51:16 +00:00
|
|
|
|
2020-05-05 08:51:50 +00:00
|
|
|
RUN wget https://github.com/syncthing/syncthing/releases/download/v${VERSION}/syncthing-linux-amd64-v${VERSION}.tar.gz -O - | tar -xz -C /app/code --strip-components=1
|
|
|
|
|
2018-02-27 00:28:45 +00:00
|
|
|
# add supervisor configs
|
|
|
|
ADD supervisor/* /etc/supervisor/conf.d/
|
|
|
|
RUN ln -sf /run/syncthing/supervisord.log /var/log/supervisor/supervisord.log
|
|
|
|
|
2020-05-05 08:51:50 +00:00
|
|
|
ADD nginx.conf start.sh /app/code/
|
2017-05-05 11:19:38 +00:00
|
|
|
|
|
|
|
CMD [ "/app/code/start.sh" ]
|