diff --git a/js/dataManager.js b/js/dataManager.js index cf03a32..7c9418d 100644 --- a/js/dataManager.js +++ b/js/dataManager.js @@ -16,9 +16,8 @@ const DataManager = (() => { // Determine if we're running in Docker (has /data endpoint) const isDockerEnvironment = () => { - // Check if we're in a deployment environment with the /data endpoint - return window.location.hostname !== 'localhost' && - window.location.hostname !== '127.0.0.1'; + // Always return true for now since we're using Docker with Coolify + return true; }; // Storage file path for Docker environment