diff --git a/compose.yml b/compose.yml index 6607dd3..05dbfd7 100644 --- a/compose.yml +++ b/compose.yml @@ -1,6 +1,8 @@ services: bot: - build: . + build: + context: . + dockerfile: Containerfile ports: - "3000:3000" depends_on: @@ -13,7 +15,7 @@ services: - INTERVAL=${INTERVAL:-5000} - THRESHOLD=${THRESHOLD:-0.01} healthcheck: - test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000/health"] + test: ["CMD", "wget", "--no-verbose", "--tries=1", "http://localhost:3000/health"] interval: 30s timeout: 10s retries: 3