fix: add production configuration file and update docker-compose to remove unnecessary environment variables
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 3m57s

This commit is contained in:
2025-09-11 11:26:57 -05:00
parent 7bf32c35c4
commit 4c5b78a584
3 changed files with 25 additions and 7 deletions

22
production.json Normal file
View File

@@ -0,0 +1,22 @@
{
"port": 4000,
"noindex": true,
"readonly": false,
"webservice": {
"database": "mongodb://mongodb/pa11y-webservice",
"host": "0.0.0.0",
"port": 3000,
"cron": "0 2 * * *",
"chromeLaunchConfig": {
"args": [
"--no-sandbox",
"--disable-setuid-sandbox",
"--disable-dev-shm-usage",
"--disable-accelerated-2d-canvas",
"--disable-gpu",
"--window-size=1280,1024"
]
}
}
}