Initial project snapshot

This commit is contained in:
2026-04-28 22:29:50 +03:00
commit 8ba0561f4f
365 changed files with 91832 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
version: "3.9"
services:
postgres:
image: postgres:16
container_name: rap_postgres
restart: unless-stopped
environment:
POSTGRES_DB: remote_access_platform
POSTGRES_USER: rap_user
POSTGRES_PASSWORD: rap_password
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
redis:
image: redis:7
container_name: rap_redis
restart: unless-stopped
ports:
- "6379:6379"
volumes:
- redis_data:/data
volumes:
postgres_data:
redis_data: