diff options
| author | Fuwn <[email protected]> | 2026-01-19 04:01:13 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-19 04:01:13 -0800 |
| commit | 972211e50666efffc9a37e4735e2dcdb7d3b1082 (patch) | |
| tree | b3b655ecdf7cd4015ae6d399a865ee911fd14015 /Dockerfile | |
| parent | fix: Remove superfluous WriteHeader call in template error handling (diff) | |
| download | kaze-972211e50666efffc9a37e4735e2dcdb7d3b1082.tar.xz kaze-972211e50666efffc9a37e4735e2dcdb7d3b1082.zip | |
feat: Simplify Docker to single data volume mount
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -41,13 +41,11 @@ USER kaze # Expose port EXPOSE 8080 -# Default config location -ENV KAZE_CONFIG=/app/config.yaml - # Health check HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 \ CMD wget --no-verbose --tries=1 --spider http://localhost:8080/ || exit 1 # Run the application +# Config and database will be in /app/data volume mount ENTRYPOINT ["./kaze"] -CMD ["--config", "/app/config.yaml"] +CMD ["--config", "/app/data/config.yaml"] |