mirror of
https://github.com/civitai/civitai.git
synced 2026-09-20 22:08:18 +08:00
24 lines
518 B
YAML
24 lines
518 B
YAML
version: '3.9'
|
|
services:
|
|
db:
|
|
image: postgres:alpine
|
|
container_name: db
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
- POSTGRES_PASSWORD=postgres
|
|
- POSTGRES_USER=modelshare
|
|
- POSTGRES_DB=postgres
|
|
volumes:
|
|
- ./postgres/data:/var/lib/postgresql/data
|
|
restart: unless-stopped
|
|
redis:
|
|
image: redis:alpine
|
|
container_name: redis
|
|
command: redis-server --requirepass "redis"
|
|
ports:
|
|
- 6379:6379
|
|
volumes:
|
|
- ./redis/data:/data
|
|
restart: unless-stopped
|