创建管理后端仓库

This commit is contained in:
2025-03-15 16:07:45 +08:00
commit 27e0ed2994
10 changed files with 861 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
name: server-dev
services:
postgres:
image: postgres:17
restart: always
environment:
POSTGRES_USER: test
POSTGRES_PASSWORD: test
POSTGRES_DB: app
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: