mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-17 21:53:12 +02:00
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
# 🚀 BUILT & MAINTAINED BY THE ALTSTACK
|
|
# 🌍 https://thealtstack.com
|
|
# 💡 Open-source deployment templates for modern self-hosting.
|
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
|
|
|
|
# Docker Compose for GPT4All
|
|
|
|
services:
|
|
gpt4all:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: gpt4all-server
|
|
ports:
|
|
- "4891:4891"
|
|
volumes:
|
|
- gpt4all_models:/app/models
|
|
networks:
|
|
- gpt4all_net
|
|
healthcheck:
|
|
test: [ "CMD", "curl", "-f", "http://localhost:4891/v1/models" ] # GPT4All local API endpoint
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
gpt4all_net:
|
|
driver: bridge
|
|
|
|
volumes:
|
|
gpt4all_models:
|
|
name: gpt4all_models
|