| 12345678910111213141516171819202122232425262728293031323334353637 |
- services:
- postgres:
- image: ${POSTGRES_IMAGE:-docker.1ms.run/library/postgres:16}
- container_name: maas-base-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
- maas-base-server:
- build:
- context: ..
- dockerfile: pack/Dockerfile
- container_name: maas-base-server
- restart: unless-stopped
- depends_on:
- postgres:
- condition: service_healthy
- entrypoint: ["/usr/bin/entrypoint.sh", "--gateway-mode", "embedded"]
- environment:
- GPUSTACK_DATABASE_URL: postgresql://gpustack:${POSTGRES_PASSWORD:-gpustack}@postgres:5432/gpustack
- volumes:
- - maas-base-data:/var/lib/gpustack
- ports:
- - "80:80"
- volumes:
- postgres-data: {}
- maas-base-data: {}
|