Skip to content

Commit

Permalink
fix: Change the CMD flowise command in Dockerfile to be the same as i…
Browse files Browse the repository at this point in the history
…n the document (FlowiseAI#2563)

* fix: Change the CMD flowise command to be the same as in the documentation.

* Remove unnecessary npx command from dockerfile

* Command was changed by the entrypoint in Docker Composer

---------

Co-authored-by: Erasmo De Souza Pinheiro <erasmodesouzapinheiro@Erasmos-MacBook-Air.local>
  • Loading branch information
erasmo-pinheiro and Erasmo De Souza Pinheiro committed Jun 4, 2024
1 parent 4ec8376 commit 5a73eaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ RUN npm install -g flowise

WORKDIR /data

CMD "flowise"
ENTRYPOINT ["flowise", "start"]
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ services:
- '${PORT}:${PORT}'
volumes:
- ~/.flowise:/root/.flowise
command: /bin/sh -c "sleep 3; flowise start"
entrypoint: /bin/sh -c "sleep 3; flowise start"

0 comments on commit 5a73eaa

Please sign in to comment.