mirror of
https://github.com/BreizhHardware/Jellystat.git
synced 2026-01-18 16:27:20 +01:00
Reworked library view script,this reduces page load time by 90% catered for new episodes in recently added feed. Underlying work done for toggle to untrack certain libraries General ui fixes Backup files now limited to latest 5 files Updated compose to have a limit on log files and sizes (Thanks @Hutch79)
26 lines
585 B
YAML
26 lines
585 B
YAML
version: '3'
|
|
services:
|
|
jellystat-db:
|
|
image: postgres
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: mypassword
|
|
jellystat:
|
|
image: jellystat
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: mypassword
|
|
POSTGRES_IP: jellystat-db
|
|
POSTGRES_PORT: 5432
|
|
JWT_SECRET: 'my-secret-jwt-key'
|
|
ports:
|
|
- "3000:3000"
|
|
depends_on:
|
|
- jellystat-db
|
|
networks:
|
|
default:
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-file: "5" # number of files or file count
|
|
max-size: "10m" # file size |