| 123456789101112131415161718192021222324252627282930313233343536 |
- services:
- postgres:
- image: postgres:16
- container_name: gpustack-db
- restart: unless-stopped
- environment:
- POSTGRES_USER: gpustack
- POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-gpustack}
- POSTGRES_DB: gpustack
- volumes:
- - postgres-data:/var/lib/postgresql/data
- healthcheck:
- test: ["CMD-SHELL", "pg_isready -U gpustack"]
- interval: 5s
- timeout: 5s
- retries: 5
- gpustack-server:
- build:
- context: ..
- dockerfile: pack/Dockerfile
- container_name: gpustack-server
- restart: unless-stopped
- depends_on:
- postgres:
- condition: service_healthy
- environment:
- GPUSTACK_DATABASE_URL: postgresql://gpustack:${POSTGRES_PASSWORD:-gpustack}@postgres:5432/gpustack
- volumes:
- - gpustack-data:/var/lib/gpustack
- ports:
- - "80:80"
- volumes:
- postgres-data: {}
- gpustack-data: {}
|