style: fix the Prettier linted files

This commit is contained in:
2024-12-29 19:21:50 +01:00
parent 3ab06794e3
commit 149451cc77
8 changed files with 69 additions and 67 deletions

28
docker-compose-prod.yaml Executable file
View File

@ -0,0 +1,28 @@
---
services:
app:
build:
dockerfile: docker/prod/app/Dockerfile
networks:
- default
- web-server-network
restart: always
depends_on: ["db"]
db:
image: postgres:16.4-bookworm
volumes: ["db_data:/var/lib/postgresql/data"]
networks:
- default
environment:
POSTGRES_DB: todo_baggins
POSTGRES_USER: app
POSTGRES_PASSWORD: app
restart: always
volumes:
db_data:
networks:
web-server-network:
external: true