fix: docker config symlink
This commit is contained in:
parent
3d1926a2a7
commit
50ee60449e
44
.gitignore
vendored
Normal file
44
.gitignore
vendored
Normal 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
|
@ -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" ]
|
||||
|
Loading…
Reference in New Issue
Block a user