Initial commit — Умный Байт landing

This commit is contained in:
2026-05-13 09:32:45 +03:00
commit 9e21350def
37 changed files with 1950 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
services:
postgres:
image: postgres:16-alpine
container_name: umbyte-postgres
environment:
POSTGRES_USER: umbyte
POSTGRES_PASSWORD: umbyte_dev_password
POSTGRES_DB: umbyte
ports:
- '5432:5432'
volumes:
- umbyte_pg_data:/var/lib/postgresql/data
restart: unless-stopped
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U umbyte']
interval: 5s
timeout: 5s
retries: 5
volumes:
umbyte_pg_data: