add node express & postgresql starter template
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user