Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 755da6c26c | |||
| c4ae1b28d4 | |||
| b2101eb40f | |||
| 486542c785 | |||
| a5541c7dee | |||
| aeacd646a8 | |||
| e0caf79ac8 | |||
| 2ab3fe9719 | |||
| 96e98693f2 | |||
| b5b015f9ef |
@@ -143,6 +143,8 @@
|
||||
| sourcebot | ghcr.io/sourcebot-dev/sourcebot:latest |
|
||||
| speedtest-tracker | lscr.io/linuxserver/speedtest-tracker:latest |
|
||||
| spotisub | blastbeng/spotisub:latest |
|
||||
| stable-diffusion-download | git.trez.wtf/trez.one/stable-diffusion-download:v9.0.0 |
|
||||
| stable-diffusion-webui | git.trez.wtf/trez.one/stable-diffusion-ui:v9.0.0 |
|
||||
| swag | lscr.io/linuxserver/swag:latest |
|
||||
| tandoor | vabene1111/recipes |
|
||||
| tandoor-pg | postgres:16-alpine |
|
||||
|
||||
@@ -44,7 +44,7 @@ layout:
|
||||
columns: 3
|
||||
Personal Services:
|
||||
style: row
|
||||
columns: 3
|
||||
columns: 4
|
||||
Professional Services:
|
||||
style: row
|
||||
columns: 5
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
version: 1.0.0
|
||||
endpoints:
|
||||
custom:
|
||||
- name: "Ollama"
|
||||
- name: "ollama"
|
||||
apiKey: "ollama"
|
||||
baseURL: "http://ollama:11434/v1/chat/completions"
|
||||
models:
|
||||
|
||||
+40
-4
@@ -104,8 +104,6 @@ services:
|
||||
create_host_path: true
|
||||
archivebox:
|
||||
container_name: archivebox
|
||||
dns:
|
||||
- adguard
|
||||
environment:
|
||||
ADMIN_USERNAME: admin # creates an admin user on first run with the given user/pass combo
|
||||
ADMIN_PASSWORD: ${ARCHIVEBOX_ADMIN_PASSWORD}
|
||||
@@ -121,7 +119,7 @@ services:
|
||||
homepage.name: ArchiveBox
|
||||
homepage.href: https://archive.${MY_TLD}
|
||||
homepage.icon: archivebox.png
|
||||
homepage.description: Podcasts, eBooks, & Audiobooks
|
||||
homepage.description: Open-source and self-hosted web archiving
|
||||
swag: enable
|
||||
swag_port: 8000
|
||||
swag_proto: http
|
||||
@@ -130,6 +128,7 @@ services:
|
||||
swag.uptime-kuma.monitor.url: https://archive.${MY_TLD}
|
||||
ports:
|
||||
- 21324:8000
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${DOCKER_VOLUME_CONFIG}/archivebox:/data
|
||||
# ./data/personas/Default/chrome_profile/Default:/data/personas/Default/chrome_profile/Default
|
||||
@@ -843,7 +842,7 @@ services:
|
||||
swag_proto: http
|
||||
swag_url: cchef.trez.wtf
|
||||
swag.uptime-kuma.enabled: true
|
||||
swag.uptime-kuma.monitor.url: https://gist.trez.wtf
|
||||
swag.uptime-kuma.monitor.url: https://cchef.trez.wtf
|
||||
ports:
|
||||
- 20992:8000
|
||||
restart: unless-stopped
|
||||
@@ -3263,6 +3262,39 @@ services:
|
||||
type: bind
|
||||
bind:
|
||||
create_host_path: true
|
||||
mixpost:
|
||||
container_name: mixpost
|
||||
image: inovector/mixpost:latest
|
||||
depends_on:
|
||||
- mariadb
|
||||
- redis
|
||||
environment:
|
||||
APP_NAME: Mixpost
|
||||
APP_KEY: ${MIXPOST_APP_KEY}
|
||||
APP_DEBUG: false
|
||||
APP_DOMAIN: social.trez.wtf
|
||||
APP_URL: https://${APP_DOMAIN}
|
||||
DB_HOST: mariadb
|
||||
DB_DATABASE: mixpost
|
||||
DB_USERNAME: mixpost
|
||||
DB_PASSWORD: ${MIXPOST_DB_PASSWORD}
|
||||
labels:
|
||||
swag: enable
|
||||
swag_proto: http
|
||||
swag_url: social.${MY_TLD}
|
||||
swag.uptime-kuma.enabled: true
|
||||
swag.uptime-kuma.monitor.url: https://social.${MY_TLD}
|
||||
homepage.group: Social
|
||||
homepage.name: Mixpost
|
||||
homepage.href: https://social.${MY_TLD}
|
||||
homepage.icon: mixpost.svg
|
||||
homepage.description: Multi-channel social media manager
|
||||
ports:
|
||||
- 61757:80
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- mixpost-storage:/var/www/html/storage/app
|
||||
- mixpost-logs:/var/www/html/storage/logs
|
||||
mongodb:
|
||||
container_name: mongodb
|
||||
environment:
|
||||
@@ -5456,6 +5488,10 @@ volumes:
|
||||
name: lldap_data
|
||||
mastodon-pg-db:
|
||||
name: mastodon-pg-db
|
||||
mixpost-storage:
|
||||
name: mixpost-storage
|
||||
mixpost-logs:
|
||||
name: mixpost-logs
|
||||
mongodb_config:
|
||||
name: mongodb_config
|
||||
mongodb_data:
|
||||
|
||||
Reference in New Issue
Block a user