deprecated directory, wip #4

This commit is contained in:
2026-01-24 22:42:02 -07:00
parent a058cd4215
commit 498e73be95
4 changed files with 0 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
# MediaTracker
Based on [official instructions](https://github.com/bonukai/MediaTracker).
**WARNING**: MediaTracker's official instructions about where it stores data must be wrong, because after a graceful restart, all of my data was deleted. :D
@@ -0,0 +1,29 @@
volumes:
storage:
driver: local
driver_opts:
type: none
o: bind
device: /mnt/apple/mediatracker/storage
assets:
driver: local
driver_opts:
type: none
o: bind
device: /mnt/apple/mediatracker/assets
# version: "3"
services:
mediatracker:
container_name: mediatracker
# ports:
# - 7481:7481
volumes:
- storage:/storage
- assets:/assets
environment:
SERVER_LANG: en
TMDB_LANG: en
AUDIBLE_LANG: us
TZ: America/Denver
image: bonukai/mediatracker:latest
+4
View File
@@ -0,0 +1,4 @@
# Yamtrack
Modified from [readme](https://github.com/FuzzyGrim/Yamtrack) instructions which tell ya to use the [dev docker-compose.yml](https://github.com/FuzzyGrim/Yamtrack/blob/dev/docker-compose.yml).
**WARNING**: Yamtrack, despite having a nicer aesthetic, the ability to add custom items, and being more updated, is inferior to MediaTrack in speed, usability, and presentation & availability of information.
+42
View File
@@ -0,0 +1,42 @@
# todo LONG_SECRET_KEY needs to be replaced, and URLS set to your access url
volumes:
db:
driver: local
driver_opts:
type: none
o: bind
device: /mnt/apple/yamtrack/db
redis_data:
driver: local
driver_opts:
type: none
o: bind
device: /mnt/apple/yamtrack/redis_data
services:
yamtrack:
container_name: yamtrack
image: ghcr.io/fuzzygrim/yamtrack
restart: unless-stopped
depends_on:
- redis
environment:
- TZ=America/Denver
- SECRET=LONG_SECRET_KEY
- REDIS_URL=redis://redis:6379
- URLS=https://yamtrack.tangentfox.com
- TMDB_NSFW=True
- MAL_NSFW=True
- IGDB_NSFW=True
volumes:
- db:/yamtrack/db
# ports:
# - "8000:8000"
redis:
container_name: yamtrack-redis
image: redis:8-alpine
restart: unless-stopped
volumes:
- redis_data:/data