Compare commits
1 Commits
monitoring
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
| c932d32aae |
19
heimdall/compose.yaml
Normal file
19
heimdall/compose.yaml
Normal file
@@ -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
|
||||
|
||||
|
||||
5
karakeep/.env
Normal file
5
karakeep/.env
Normal file
@@ -0,0 +1,5 @@
|
||||
KARAKEEP_VERSION=release
|
||||
NEXTAUTH_SECRET=ii3vppdsl98803
|
||||
MEILI_MASTER_KEY=tutuewiro5.03092
|
||||
NEXTAUTH_URL=http://localhost:3013
|
||||
|
||||
44
karakeep/compose.yaml
Normal file
44
karakeep/compose.yaml
Normal file
@@ -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:
|
||||
21
mealie/compose.yaml
Normal file
21
mealie/compose.yaml
Normal file
@@ -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
|
||||
|
||||
BIN
stirling/.gradle/4.4.1/fileChanges/last-build.bin
Normal file
BIN
stirling/.gradle/4.4.1/fileChanges/last-build.bin
Normal file
Binary file not shown.
BIN
stirling/.gradle/4.4.1/fileHashes/fileHashes.lock
Normal file
BIN
stirling/.gradle/4.4.1/fileHashes/fileHashes.lock
Normal file
Binary file not shown.
14
stirling/compose.yaml
Normal file
14
stirling/compose.yaml
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user