fix: Change the CMD flowise command in Dockerfile to be the same as in the document (#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>
This commit is contained in:
parent
4ec8376efa
commit
5a73eaa588
|
|
@ -18,4 +18,4 @@ RUN npm install -g flowise
|
||||||
|
|
||||||
WORKDIR /data
|
WORKDIR /data
|
||||||
|
|
||||||
CMD "flowise"
|
ENTRYPOINT ["flowise", "start"]
|
||||||
|
|
|
||||||
|
|
@ -33,4 +33,4 @@ services:
|
||||||
- '${PORT}:${PORT}'
|
- '${PORT}:${PORT}'
|
||||||
volumes:
|
volumes:
|
||||||
- ~/.flowise:/root/.flowise
|
- ~/.flowise:/root/.flowise
|
||||||
command: /bin/sh -c "sleep 3; flowise start"
|
entrypoint: /bin/sh -c "sleep 3; flowise start"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue