style: fixed prettier in docker-compose.pastgres.yaml
This commit is contained in:
@@ -6,16 +6,16 @@ services:
|
|||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile.local
|
dockerfile: Dockerfile.local
|
||||||
ports:
|
ports:
|
||||||
- "5055:5055"
|
- '5055:5055'
|
||||||
environment:
|
environment:
|
||||||
DB_TYPE: "postgres" # Which DB engine to use. The default is "sqlite". To use postgres, this needs to be set to "postgres"
|
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_HOST: 'postgres' # The host (url) of the database
|
||||||
DB_PORT: "5432" # The port to connect to
|
DB_PORT: '5432' # The port to connect to
|
||||||
DB_USER: "jellyseerr" # Username used to connect to the database
|
DB_USER: 'jellyseerr' # Username used to connect to the database
|
||||||
DB_PASS: "jellyseerr" # Password of the user 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_NAME: 'jellyseerr' # The name of the database to connect to
|
||||||
DB_LOG_QUERIES: "false" # Whether to log the DB queries for debugging
|
DB_LOG_QUERIES: 'false' # Whether to log the DB queries for debugging
|
||||||
DB_USE_SSL: "false" # Whether to enable ssl for database connection
|
DB_USE_SSL: 'false' # Whether to enable ssl for database connection
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app:rw,cached
|
- .:/app:rw,cached
|
||||||
- /app/node_modules
|
- /app/node_modules
|
||||||
@@ -31,9 +31,8 @@ services:
|
|||||||
POSTGRES_PASSWORD: jellyseerr
|
POSTGRES_PASSWORD: jellyseerr
|
||||||
POSTGRES_DB: jellyseerr
|
POSTGRES_DB: jellyseerr
|
||||||
ports:
|
ports:
|
||||||
- "5432:5432"
|
- '5432:5432'
|
||||||
volumes:
|
volumes:
|
||||||
- postgres:/var/lib/postgresql/data
|
- postgres:/var/lib/postgresql/data
|
||||||
volumes:
|
volumes:
|
||||||
postgres:
|
postgres:
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user