diff options
author | ben | 2025-04-14 14:34:16 +0200 |
---|---|---|
committer | ben | 2025-04-14 14:34:16 +0200 |
commit | 76f889255f380cf162e6ab699719f6f7b767c9b1 (patch) | |
tree | 265fd4bcb15fb1661e68784b29de100973f3fd70 | |
parent | 2b21004bf948e1ab9e61f7ba48a03909f23aeb1c (diff) | |
download | ai_env-76f889255f380cf162e6ab699719f6f7b767c9b1.tar.gz ai_env-76f889255f380cf162e6ab699719f6f7b767c9b1.tar.bz2 ai_env-76f889255f380cf162e6ab699719f6f7b767c9b1.tar.xz |
Bind to localhost behind reverse proxy
-rw-r--r-- | docker-compose.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index f750995..fdab25c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -97,9 +97,9 @@ services: - openedai-speech - aichat ports: - - "11434:11434" - - "8000:8000" - - "8001:8001" + - "127.0.0.1:11434:11434" + - "127.0.0.1:8000:8000" + - "127.0.0.1:8001:8001" restart: unless-stopped networks: - internet |