add node express & postgresql starter template

This commit is contained in:
2024-05-21 05:53:18 +02:00
parent 80bd52ebe8
commit 87212c27c3
8 changed files with 1570 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
services:
postgres:
image: postgres:16.3
container_name: ${PROJECT_NAME}_postgres
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DB}
ports:
- "${POSTGRES_PORT}:5432"
volumes:
- postgres_data:/var/lib/postgresql/data