创建管理后端仓库
This commit is contained in:
17
scripts/dev/docker-compose.yaml
Normal file
17
scripts/dev/docker-compose.yaml
Normal 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:
|
||||
Reference in New Issue
Block a user