Общая система сборки у репозиториев, определение порта

This commit is contained in:
RoyceDa
2026-02-11 10:15:02 +02:00
parent 195fe4759f
commit 867137a5fa
8 changed files with 139 additions and 32 deletions

View File

@@ -0,0 +1,16 @@
version: '3.8'
services:
db:
image: postgres:latest
environment:
POSTGRES_DB: your_database
POSTGRES_USER: your_user
POSTGRES_PASSWORD: your_password
ports:
- "5432:5432"
adminer:
image: adminer
ports:
- "8080:8080"