Compare commits
1 Commits
fix/remove
...
8adbbf0ed4
| Author | SHA1 | Date | |
|---|---|---|---|
| 8adbbf0ed4 |
@@ -31,8 +31,20 @@ services:
|
|||||||
ssh:
|
ssh:
|
||||||
- default
|
- default
|
||||||
container_name: hermes
|
container_name: hermes
|
||||||
|
# Install Matrix bridge deps (mautrix[encryption]) + openai into the venv at startup.
|
||||||
|
# Ensures the venv is usable even on first boot with empty persistent volume.
|
||||||
entrypoint: ["/bin/bash", "-c",
|
entrypoint: ["/bin/bash", "-c",
|
||||||
"bash /opt/data/hermes-tools/install.sh && exec /usr/bin/tini -g -- /opt/hermes/docker/entrypoint.sh \"$@\"",
|
"bash /opt/data/hermes-tools/install.sh && \
|
||||||
|
if [ ! -f /opt/hermes/.venv/bin/python3 ]; then \
|
||||||
|
uv venv /opt/hermes/.venv --seed && \
|
||||||
|
. /opt/hermes/.venv/bin/activate && \
|
||||||
|
uv pip install --no-cache-dir --no-deps -e /opt/hermes && \
|
||||||
|
uv pip install --no-cache-dir piper-tts sounddevice numpy; \
|
||||||
|
else \
|
||||||
|
. /opt/hermes/.venv/bin/activate; \
|
||||||
|
fi && \
|
||||||
|
uv pip install openai 'mautrix[encryption]' -q && \
|
||||||
|
exec /usr/bin/tini -g -- /opt/hermes/docker/entrypoint.sh \"$@\"",
|
||||||
"hermes-entrypoint"]
|
"hermes-entrypoint"]
|
||||||
restart: always
|
restart: always
|
||||||
# Gateway run enables the internal API server on port 8642
|
# Gateway run enables the internal API server on port 8642
|
||||||
@@ -59,6 +71,8 @@ services:
|
|||||||
- /mnt/HoardingCow_docker_data/Syncthing/telos-ro:/opt/data/telos-ro:ro
|
- /mnt/HoardingCow_docker_data/Syncthing/telos-ro:/opt/data/telos-ro:ro
|
||||||
# Syncthing-shared inbox — write tasks here, they sync to user's laptop
|
# Syncthing-shared inbox — write tasks here, they sync to user's laptop
|
||||||
- /mnt/HoardingCow_docker_data/Syncthing/telos-rw:/opt/data/telos-rw:rw
|
- /mnt/HoardingCow_docker_data/Syncthing/telos-rw:/opt/data/telos-rw:rw
|
||||||
|
# Persist Python venv across container recreation (Matrix bridge deps, etc.)
|
||||||
|
- /mnt/HoardingCow_docker_data/Hermes/venv:/opt/hermes/.venv
|
||||||
devices:
|
devices:
|
||||||
- /dev/kfd:/dev/kfd
|
- /dev/kfd:/dev/kfd
|
||||||
- /dev/dri:/dev/dri
|
- /dev/dri:/dev/dri
|
||||||
|
|||||||
4
ai/hermes/startup.sh
Executable file
4
ai/hermes/startup.sh
Executable file
@@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# This file was replaced by inline entrypoint logic in compose.yml
|
||||||
|
# See ai/compose.yml hermes.entrypoint for the current implementation.
|
||||||
|
echo "startup.sh is obsolete — logic is inline in compose.yml entrypoint"
|
||||||
Reference in New Issue
Block a user