New configuration files have been added for TypeScript, Biome, Nest CLI, Docker-compose, and environment variables. This setup includes TypeScript compiler options, biome schema settings, database container configuration and more. Additionally, a .gitignore file is added to exclude unnecessary files from the git repository.
16 lines
364 B
YAML
16 lines
364 B
YAML
version: '3'
|
|
|
|
services:
|
|
database:
|
|
container_name: "b08-db"
|
|
image: 'postgres:latest'
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "${POSTGRES_PORT}:5432"
|
|
environment:
|
|
POSTGRES_USER: ${POSTGRES_USER}
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
|
POSTGRES_DB: ${POSTGRES_DATABASE}
|
|
volumes:
|
|
- './db-data/:/var/lib/postgresql/data/' |