reformat using prettier

This commit is contained in:
2026-02-19 18:53:08 +01:00
parent acd8e8a52a
commit 1793be90e1
2 changed files with 29 additions and 33 deletions

View File

@@ -1,30 +1,29 @@
services:
db:
image: postgres:18-alpine
init: true
environment:
POSTGRES_DB: "gaehsnitzdb"
POSTGRES_USER: "gaehsnitzuser"
POSTGRES_PASSWORD: "SCKL97ukwICPpjJ9rXyhdljZ86T29A"
expose:
- "5432"
volumes:
- ./volumes/db/data:/var/lib/postgresql/data:rw
db:
image: postgres:18-alpine
init: true
environment:
POSTGRES_DB: "gaehsnitzdb"
POSTGRES_USER: "gaehsnitzuser"
POSTGRES_PASSWORD: "SCKL97ukwICPpjJ9rXyhdljZ86T29A"
expose:
- "5432"
volumes:
- ./volumes/db/data:/var/lib/postgresql/data:rw
web:
build:
context: .
init: true
environment:
DB_HOST: "db"
DB_PORT: "5432"
DB_NAME: "gaehsnitzdb"
DB_USER: "gaehsnitzuser"
DB_PASSWORD: "SCKL97ukwICPpjJ9rXyhdljZ86T29A"
depends_on:
- db
ports:
- "80:8000"
volumes:
- .:/code:rw
web:
build:
context: .
init: true
environment:
DB_HOST: "db"
DB_PORT: "5432"
DB_NAME: "gaehsnitzdb"
DB_USER: "gaehsnitzuser"
DB_PASSWORD: "SCKL97ukwICPpjJ9rXyhdljZ86T29A"
depends_on:
- db
ports:
- "80:8000"
volumes:
- .:/code:rw

View File

@@ -1,7 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":configMigration"
]
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: ["config:recommended", ":configMigration"],
}