mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
13 lines
378 B
YAML
13 lines
378 B
YAML
services:
|
|
postgres:
|
|
container_name: postgres
|
|
image: postgres:15.4
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- ./.docker/postgres:/var/lib/postgresql/data
|
|
- ./.docker/scripts/postgres:/docker-entrypoint-initdb.d
|
|
environment:
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=password
|
|
- POSTGRES_DATABASES=roo_code_development,roo_code_test
|