TasteTwin / docker-compose.yml
the-main-method's picture
feat: initial commit
d178e7a
Raw
History Blame Contribute Delete
417 Bytes
version: '3.8'
services:
tastetwin:
build:
context: .
dockerfile: Dockerfile
image: tastetwin-ai:latest
container_name: tastetwin_service
ports:
- "8090:8090"
environment:
- PORT=8090
restart: always
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8090/api/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 5s