Added the "--archives-path" option to the list of command input parameters in both the Dockerfile and docker-compose files.

This commit is contained in:
Javier Cicchelli 2025-04-07 01:13:20 +02:00
parent 3a1b30cb41
commit 9e7c1f61fd
2 changed files with 2 additions and 2 deletions

View File

@ -83,4 +83,4 @@ EXPOSE 8080
# Start the Hummingbird service when the image is run, default to listening on 8080 in production environment
ENTRYPOINT ["./doxy"]
CMD ["--hostname", "0.0.0.0", "--port", "8080"]
CMD ["--archives-path", "Resources/Archives", "--hostname", "0.0.0.0", "--port", "8080"]

View File

@ -4,4 +4,4 @@ services:
context: .
ports:
- 3000:8080
command: ["--hostname", "0.0.0.0", "--port", "8080"]
command: ["--archives-path", "Resources/Archives", "--hostname", "0.0.0.0", "--port", "8080"]