cleanupX2

This commit is contained in:
SpudGunMan
2025-10-23 09:39:21 -07:00
parent f8a94fca71
commit d9febeef0f
4 changed files with 46 additions and 16 deletions

View File

@@ -1,4 +1,4 @@
# Docker Compose configuration for Meshing Around application with optional services.
# OLD Docker Compose configuration for Meshing Around application with optional services.
# This setup includes the main Meshing Around service, with optional Ollama and Prometheus Node Exporter services.
# Adjust device mappings, ports, and configurations as needed for your environment.
@@ -14,6 +14,9 @@ services:
configs:
- source: me_config
target: /app/config.ini
devices: # Optional if using meshtasticd. Pass through radio device.
- /dev/ttyAMA10 # Replace this with your actual device!
#- /dev/ttyUSB0 # Example for USB device
user: 1000:1000 # run as non-root user for better security.
extra_hosts:
# - "host.docker.internal:host-gateway" # Enables access to host services from within the container.

View File

@@ -8,8 +8,8 @@ pid=$!
# Pause for Ollama to start.
sleep 5
echo "🔴 Retrieve llama3.2:3b model..."
ollama pull llama3.2:3b
echo "🔴 Retrieve gemma3:270m model..."
ollama pull gemma3:270m
echo "🟢 Done!"
# Wait for Ollama process to finish.