How wrong??? #1047
UsefullProgrammer
started this conversation in
General
How wrong???
#1047
Replies: 1 comment
-
They're on the same machine but are they on the same docker network? Did you setup a compose for those or are they just separated containers? If you want to setup a common specific network for those you should do that in compose.yml, something like: services:
cheshire-cat-core:
image: ghcr.io/cheshire-cat-ai/core:latest
container_name: cheshire_cat_core
ports:
- 1865:80
- 5678:5678
volumes:
- ./static:/app/cat/static
- ./plugins:/app/cat/plugins
- ./data:/app/cat/data
networks:
- cat_network
ollama:
image: ollama/ollama:latest
container_name: ollama
ports:
- 11434:11434
volumes:
- ./ollama:/root/.ollama
networks:
- cat_network
networks:
cat_network:
driver: bridgeIf they are separated but on the same host you can leverage the host network using |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have set cheshire i think just and set ollama on docker i think just but not work, is in same machine.
https://i.imgur.com/zJPPVii.png
https://i.imgur.com/ynS1AKf.png
https://i.imgur.com/QXe9Fu6.png
https://i.imgur.com/MTiALSr.png
Beta Was this translation helpful? Give feedback.
All reactions