Skip to content

Commit

Permalink
style: fixed prettier in docker-compose.pastgres.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-carrot committed Jun 21, 2024
1 parent f8926fa commit 357b927
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions docker-compose.postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ services:
context: .
dockerfile: Dockerfile.local
ports:
- "5055:5055"
- '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: "jellyseerr" # Username used to connect to the database
DB_PASS: "jellyseerr" # Password of the user used to connect to the database
DB_NAME: "jellyseerr" # 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
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: 'jellyseerr' # Username used to connect to the database
DB_PASS: 'jellyseerr' # Password of the user used to connect to the database
DB_NAME: 'jellyseerr' # 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
Expand All @@ -31,9 +31,8 @@ services:
POSTGRES_PASSWORD: jellyseerr
POSTGRES_DB: jellyseerr
ports:
- "5432:5432"
- '5432:5432'
volumes:
- postgres:/var/lib/postgresql/data
volumes:
postgres:

0 comments on commit 357b927

Please sign in to comment.