14 lines
291 B
YAML
14 lines
291 B
YAML
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 |