initial commit

This commit is contained in:
Mathias Beaulieu-Duncan 2024-12-09 10:45:09 -05:00
commit e79d3356d0
Signed by: mathias
GPG Key ID: C3A8B10873F4CA9C
3 changed files with 16 additions and 0 deletions

3
.env.example Normal file
View File

@ -0,0 +1,3 @@
DB_DATABASE=
DB_USER=
DB_PASSWORD=

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.env

12
docker-compose.yaml Normal file
View File

@ -0,0 +1,12 @@
version: '3.8'
services:
database:
image: postgres:alpine
restart: unless-stopped
environment:
POSTGRES_DB: ${DB_DATABASE}
POSTGRES_USER: ${DB_USER}
POSTGRES_PASSWORD: ${DB_PASSWORD}
ports:
- "5432:5432"