17 lines
538 B
Docker
17 lines
538 B
Docker
FROM cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7f8833edf0eb5a4f4
|
|
|
|
ARG VERSION=1.8.0
|
|
|
|
RUN mkdir -p /app/code
|
|
WORKDIR /app/code
|
|
|
|
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
|
|
|
|
# add supervisor configs
|
|
ADD supervisor/* /etc/supervisor/conf.d/
|
|
RUN ln -sf /run/syncthing/supervisord.log /var/log/supervisor/supervisord.log
|
|
|
|
ADD nginx.conf start.sh /app/code/
|
|
|
|
CMD [ "/app/code/start.sh" ]
|