From 357b927ab32167d5d00fac4b0a357096ad05bb95 Mon Sep 17 00:00:00 2001 From: dr-carrot Date: Fri, 21 Jun 2024 13:38:55 -0400 Subject: [PATCH] style: fixed prettier in docker-compose.pastgres.yaml --- docker-compose.postgres.yaml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/docker-compose.postgres.yaml b/docker-compose.postgres.yaml index f2cce1d0..2ed270f3 100644 --- a/docker-compose.postgres.yaml +++ b/docker-compose.postgres.yaml @@ -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 @@ -31,9 +31,8 @@ services: POSTGRES_PASSWORD: jellyseerr POSTGRES_DB: jellyseerr ports: - - "5432:5432" + - '5432:5432' volumes: - postgres:/var/lib/postgresql/data volumes: postgres: -