# docker-compose.yml version: '3.8' services: saas-admin-api: build: . container_name: saas-admin-api restart: always ports: - "8080:8080" env_file: - .env healthcheck: test: ["CMD", "curl", "-f", "http://localhost:8080"] interval: 10s timeout: 5s retries: 5