
Yamtrack
1171A self hosted media tracker for movies, tv shows, anime, manga, video games and books.
#media tracker #movies #tv shows #anime #manga #video games #books #Screenshots
2025-08-14
2025-08-14
Getting Started
- Create a folder and move to the folder
mkdir yamtrack && cd yamtrack
- Create a
docker-compose.yml
file and add the following content:services: yamtrack: container_name: yamtrack image: ghcr.io/fuzzygrim/yamtrack restart: unless-stopped depends_on: - redis environment: - TZ=Europe/Berlin - SECRET=longstring - REDIS_URL=redis://redis:6379 volumes: - ./db:/yamtrack/db ports: - "8000:8000" redis: container_name: yamtrack-redis image: redis:7-alpine restart: unless-stopped volumes: - redis_data:/data volumes: redis_data:
- Run the following command to start the container:
docker compose up -d
- Open the browser and go to http://localhost:8000 to access the Yamtrack.