mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
17 lines
332 B
YAML
17 lines
332 B
YAML
|
version: "3.7"
|
||
|
|
||
|
services:
|
||
|
postgres:
|
||
|
image: postgres:15
|
||
|
container_name: zed_postgres
|
||
|
ports:
|
||
|
- 5432:5432
|
||
|
environment:
|
||
|
POSTGRES_HOST_AUTH_METHOD: trust
|
||
|
volumes:
|
||
|
- postgres_data:/var/lib/postgresql/data
|
||
|
- ./docker-compose.sql:/docker-entrypoint-initdb.d/init.sql
|
||
|
|
||
|
volumes:
|
||
|
postgres_data:
|