From 9e9d95edc02e058041202fce876018aee76bcb51 Mon Sep 17 00:00:00 2001 From: Christoph Califice Date: Sun, 18 Jan 2026 16:50:28 -0300 Subject: [PATCH] move utils. update stirling --- .gitignore | 1 + free-games-claimer/.gitignore | 3 --- utils/docker-compose.yml | 42 +++++++++++------------------------ 3 files changed, 14 insertions(+), 32 deletions(-) delete mode 100644 free-games-claimer/.gitignore diff --git a/.gitignore b/.gitignore index e69de29..504606b 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +RicoToGhostfolio diff --git a/free-games-claimer/.gitignore b/free-games-claimer/.gitignore deleted file mode 100644 index 7983ad4..0000000 --- a/free-games-claimer/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -node_modules/ -data/ -*.env diff --git a/utils/docker-compose.yml b/utils/docker-compose.yml index eb52aae..121ab37 100644 --- a/utils/docker-compose.yml +++ b/utils/docker-compose.yml @@ -1,4 +1,4 @@ -name: cyber-chef +name: utils services: cyberchef: ports: @@ -8,35 +8,19 @@ services: container_name: cyberchef stirling-pdf: - container_name: stirling-PDF - image: frooodle/s-pdf:latest - deploy: - resources: - limits: - memory: 4G - healthcheck: - test: ["CMD-SHELL", "curl -f http://localhost:8080/api/v1/info/status | grep -q 'UP' && curl -fL http://localhost:8080/ | grep -qv 'Please sign in'"] - interval: 5s - timeout: 10s - retries: 16 + image: stirlingtools/stirling-pdf:latest + container_name: stirling-pdf ports: - - "8585:8080" + - '8585:8080' volumes: - - ./stirling-pdf/data:/usr/share/tessdata:rw - - ./stirling-pdf/config:/configs:rw - - ./stirling-pdf/logs:/logs:rw + - /home/ccalifice/docker-data/utils/stirling-data/tessdata:/usr/share/tessdata # OCR language files + - /home/ccalifice/docker-data/utils/stirling-data/configs:/configs # Settings & database + - /home/ccalifice/docker-data/utils/stirling-data/logs:/logs # Application logs + - /home/ccalifice/docker-data/utils/stirling-data/pipeline:/pipeline # Automation configs environment: - DOCKER_ENABLE_SECURITY: "false" - SECURITY_ENABLELOGIN: "false" - LANGS: "en_GB,en_US,ar_AR,de_DE,fr_FR,es_ES,zh_CN,zh_TW,ca_CA,it_IT,sv_SE,pl_PL,ro_RO,ko_KR,pt_BR,ru_RU,el_GR,hi_IN,hu_HU,tr_TR,id_ID" - SYSTEM_DEFAULTLOCALE: en-US - UI_APPNAME: Stirling-PDF - UI_HOMEDESCRIPTION: Stirling-PDF - UI_APPNAMENAVBAR: Stirling-PDF Latest - SYSTEM_MAXFILESIZE: "100" - METRICS_ENABLED: "true" - SYSTEM_GOOGLEVISIBILITY: "true" - restart: on-failure:5 + - SECURITY_ENABLELOGIN=false # Set true to enable user authentication + - LANGS=en_GB,pt_BR # Interface language + restart: unless-stopped wallos: container_name: wallos @@ -47,6 +31,6 @@ services: TZ: 'America/Sao_Paulo' # Volumes store your data between container upgrades volumes: - - './db:/var/www/html/db' - - './logos:/var/www/html/images/uploads/logos' + - '/home/ccalifice/docker-data/utils/wallos/db:/var/www/html/db' + - '/home/ccalifice/docker-data/utils/wallos/logos:/var/www/html/images/uploads/logos' restart: unless-stopped \ No newline at end of file