diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..f65a335 --- /dev/null +++ b/.env.example @@ -0,0 +1,4 @@ +TELEGRAM_BOT_TOKEN= +TELEGRAM_CHAT_ID= +PUBLIC_RECAPTCHA_SITE_KEY= +RECAPTCHA_SECRET_KEY= diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..3ba4d38 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,13 @@ +services: + hackiit-website: + build: . + container_name: hackiit-website + ports: + - "8080:8080" + restart: unless-stopped + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:8080/"] + interval: 30s + timeout: 3s + retries: 3 + start_period: 5s