fix: docker config symlink

This commit is contained in:
Stixx 2024-11-05 17:03:27 +01:00
parent 3d1926a2a7
commit 50ee60449e
2 changed files with 48 additions and 1 deletions

44
.gitignore vendored Normal file
View File

@ -0,0 +1,44 @@
## .idea folder (JetBrains IDEs)
.idea/
## File-based project format
*.iws
## Folder-based project format
.idea_modules/
## Configuration for code styles and formatting
*.iml
modules.xml
*.enc
## Workspace and task-specific files
tasks.xml
workspace.xml
usage.statistics.xml
shelf/
## Configuration for deployment and run configuration
deployment.xml
deployment/
runConfigurations/
## Scratch files
scratches/
## Other metadata files
*.log
## Management files generated by JetBrains IDE
session.*.xml
## File used to store search results
.idea/find/
## Files including file history (local history)
.idea/backup/
.idea/libraries/
## Other miscellaneous files
misc.xml

View File

@ -42,9 +42,12 @@ HEALTHCHECK CMD curl --fail http://localhost:3000 || exit 1
# Cloudron specific labels
LABEL cloudronManifestPath="CloudronManifest.json"
VOLUME [ "/app/data", "/app" ]
VOLUME [ "/app/data" ]
EXPOSE 3000
RUN mkdir /app/data
RUN ln -s /app/config.yml /app/data/config.yml
ENV DEBUG="blossom-server,blossom-server:*"
CMD [ "/app/start.sh" ]