init repo

This commit is contained in:
Pravdin Egor
2023-09-10 16:40:53 +07:00
commit 51344d2018
29 changed files with 6210 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
version: "3.9"
services:
postgres:
image: postgres:15.3
container_name: dating-postgres
environment:
POSTGRES_DB: "dating-db"
POSTGRES_USER: "dating-admin"
POSTGRES_PASSWORD: "7TTLpNh4GtQcDAMY"
volumes:
- dating-postgres-data:/var/lib/postgresql
ports:
- "25432:5432"
volumes:
dating-postgres-data:
driver: local