docker-compose/gpt-ai/docker-compose.yml

14 lines
291 B
YAML
Raw Normal View History

2024-07-22 18:29:36 +03:00
version: '3'
services:
gpt-ai:
image: gpt-ai
container_name: gpt-ai
ports:
- 2101:2101
environment:
- TZ=Europe/Stockholm
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:2101/connect"]
interval: 30s
timeout: 10s
retries: 3