mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -05:00
* feat: add Overseerr migration * refactor: rename to Seerr * refactor: more rename to Seerr * feat: update the value of the MediaStatus.DELETED enum * fix: add more details in migration logs * fix: replace .update by .save for TypeORM hooks * fix: add fake migration to skip the duplicated UpdateWebPush migration * fix: rewrite the AddUserAvatarCacheFields migration for Overseerr merge * fix: replace jellyseerr migrations with a dedicated one for overseerr * fix: update overseerr migration * fix: update overseerr migration * fix: remove irrelevant changes * fix: typos * docs: update jsdoc comment * docs: update seerr description * docs: fix the contributing.md link * fix: remove unwanterd change on postgres dev datasource * docs: add latest tag to docker image * fix: migrate old deleted status for 4k media * fix: update Seerr version check
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
services:
|
|
seerr:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.local
|
|
ports:
|
|
- '5055:5055'
|
|
environment:
|
|
DB_TYPE: 'postgres' # Which DB engine to use. The default is "sqlite". To use postgres, this needs to be set to "postgres"
|
|
DB_HOST: 'postgres' # The host (url) of the database
|
|
DB_PORT: '5432' # The port to connect to
|
|
DB_USER: 'seerr' # Username used to connect to the database
|
|
DB_PASS: 'seerr' # Password of the user used to connect to the database
|
|
DB_NAME: 'seerr' # The name of the database to connect to
|
|
DB_LOG_QUERIES: 'false' # Whether to log the DB queries for debugging
|
|
DB_USE_SSL: 'false' # Whether to enable ssl for database connection
|
|
volumes:
|
|
- .:/app:rw,cached
|
|
- /app/node_modules
|
|
- /app/.next
|
|
depends_on:
|
|
- postgres
|
|
links:
|
|
- postgres
|
|
postgres:
|
|
image: postgres:18
|
|
environment:
|
|
POSTGRES_USER: seerr
|
|
POSTGRES_PASSWORD: seerr
|
|
POSTGRES_DB: seerr
|
|
ports:
|
|
- '5432:5432'
|
|
volumes:
|
|
- postgres:/var/lib/postgresql
|
|
volumes:
|
|
postgres:
|