moved to NFS share for volume storage. Migrated all data

This commit is contained in:
git
2026-07-02 12:49:48 +10:00
parent d9cce278e6
commit 5e47ae2777
110 changed files with 146 additions and 6611 deletions
+19
View File
@@ -0,0 +1,19 @@
FROM snowzach/doods2:latest
RUN groupadd -r doods && useradd -m -s /bin/bash -d /opt/doods -g doods doods
RUN chsh -s /usr/sbin/nologin root
RUN chown -R doods:doods /opt/doods
ENV PATH "${PATH}:/opt/doods"
ENV HOME /opt/doods
USER doods
ENTRYPOINT ["python3", "main.py"]
CMD ["api"]