init commit

This commit is contained in:
Richard Toth
2026-02-28 10:32:16 +01:00
commit 2d66ed67a1
3 changed files with 24 additions and 0 deletions

3
.env.dist Normal file
View File

@@ -0,0 +1,3 @@
POSTGRES_DB=pgsql
POSTGRES_USER=pgsql
POSTGRES_PASSWORD=T297rT123we6

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.env

20
docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
services:
postgres:
image: postgres:18-alpine
container_name: postgres18
restart: unless-stopped
environment:
POSTGRES_DB: ${POSTGRES_DB}
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
volumes:
- postgres_data:/var/lib/postgresql/data
networks:
- web
volumes:
postgres_data:
networks:
web:
external: true