2025-03-15 16:07:45 +08:00
|
|
|
name: server-dev
|
|
|
|
|
|
|
|
|
|
services:
|
2025-03-18 17:57:07 +08:00
|
|
|
|
2025-03-15 16:07:45 +08:00
|
|
|
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
|
2025-03-18 17:57:07 +08:00
|
|
|
redis:
|
|
|
|
|
image: redis:7.4
|
|
|
|
|
restart: always
|
|
|
|
|
ports:
|
|
|
|
|
- "6379:6379"
|
2025-03-15 16:07:45 +08:00
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
postgres_data:
|