Add config files for running Postgres inside Docker Compose (#3637)

This PR adds config files for running the Postgres instance for local
Zed development in a Docker Compose instance.

For those of us who don't like to have a Postgres install always present
on the host system 😄

Usage:

```
docker compose up -d
```

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2023-12-13 17:25:07 -05:00 committed by GitHub
parent 985d4c7429
commit aa55e55c7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

1
docker-compose.sql Normal file
View file

@ -0,0 +1 @@
create database zed;