diff --git a/heimdall/compose.yaml b/heimdall/compose.yaml new file mode 100644 index 0000000..6a4fce3 --- /dev/null +++ b/heimdall/compose.yaml @@ -0,0 +1,19 @@ +services: + heimdall: + image: lscr.io/linuxserver/heimdall:latest + container_name: heimdall + restart: unless-stopped + security_opt: + - no-new-privileges:true + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/New_York + ports: + - 9088:80 + - 7443:443 + volumes: + - /etc/localtime:/etc/localtime:ro + - /mnt/storage/appdata/heimdall/config:/data + + diff --git a/karakeep/.env b/karakeep/.env new file mode 100644 index 0000000..9230e97 --- /dev/null +++ b/karakeep/.env @@ -0,0 +1,5 @@ +KARAKEEP_VERSION=release +NEXTAUTH_SECRET=ii3vppdsl98803 +MEILI_MASTER_KEY=tutuewiro5.03092 +NEXTAUTH_URL=http://localhost:3013 + diff --git a/karakeep/compose.yaml b/karakeep/compose.yaml new file mode 100644 index 0000000..9bdeb35 --- /dev/null +++ b/karakeep/compose.yaml @@ -0,0 +1,44 @@ +services: + web: + image: ghcr.io/karakeep-app/karakeep:${KARAKEEP_VERSION:-release} + restart: unless-stopped + volumes: + # By default, the data is stored in a docker volume called "data". + # If you want to mount a custom directory, change the volume mapping to: + # - /path/to/your/directory:/data + - /mnt/storage/appdata/karakeep/data:/data + ports: + - 3013:3000 + env_file: + - .env + environment: + MEILI_ADDR: http://meilisearch:7700 + BROWSER_WEB_URL: http://chrome:9222 + # OPENAI_API_KEY: ... + + # You almost never want to change the value of the DATA_DIR variable. + # If you want to mount a custom directory, change the volume mapping above instead. + DATA_DIR: /data # DON'T CHANGE THIS + chrome: + image: gcr.io/zenika-hub/alpine-chrome:124 + restart: unless-stopped + command: + - --no-sandbox + - --disable-gpu + - --disable-dev-shm-usage + - --remote-debugging-address=0.0.0.0 + - --remote-debugging-port=9222 + - --hide-scrollbars + meilisearch: + image: getmeili/meilisearch:v1.13.3 + restart: unless-stopped + env_file: + - .env + environment: + MEILI_NO_ANALYTICS: "true" + volumes: + - meilisearch:/meili_data + +volumes: + meilisearch: + data: diff --git a/mealie/compose.yaml b/mealie/compose.yaml new file mode 100644 index 0000000..3bfa17a --- /dev/null +++ b/mealie/compose.yaml @@ -0,0 +1,21 @@ +services: + mealie: + image: ghcr.io/mealie-recipes/mealie:v2.8.0 # + container_name: mealie + restart: always + ports: + - "9925:9000" # + deploy: + resources: + limits: + memory: 1000M # + volumes: + - /mnt/storage/appdata/mealie/data:/app/data/ + environment: + # Set Backend ENV Variables Here + ALLOW_SIGNUP: "false" + PUID: 1000 + PGID: 1000 + TZ: America/New_York + BASE_URL: https://mealie.objectbrokers.com.com + diff --git a/stirling/.gradle/4.4.1/fileChanges/last-build.bin b/stirling/.gradle/4.4.1/fileChanges/last-build.bin new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/stirling/.gradle/4.4.1/fileChanges/last-build.bin differ diff --git a/stirling/.gradle/4.4.1/fileHashes/fileHashes.lock b/stirling/.gradle/4.4.1/fileHashes/fileHashes.lock new file mode 100644 index 0000000..98525de Binary files /dev/null and b/stirling/.gradle/4.4.1/fileHashes/fileHashes.lock differ diff --git a/stirling/compose.yaml b/stirling/compose.yaml new file mode 100644 index 0000000..809b70c --- /dev/null +++ b/stirling/compose.yaml @@ -0,0 +1,14 @@ +services: + stirling-pdf: + image: docker.stirlingpdf.com/stirlingtools/stirling-pdf:latest + ports: + - '8329:8080' + volumes: + - /mnt/storage/appdata/StirlingPDF/trainingData:/usr/share/tessdata # Required for extra OCR languages + - /mnt/storage/appdata/StirlingPDF/extraConfigs:/configs + - /mnt/storage/appdata/StirlingPDF/customFiles:/customFiles/ + - /mnt/storage/appdata/StirlingPDF/logs:/logs/ + - /mnt/storage/appdata/StirlingPDF/pipeline:/pipeline/ + environment: + - DISABLE_ADDITIONAL_FEATURES=false + - LANGS=en_US