From 78d2fd586c9cc51c24cea686813b7f1e80edadae Mon Sep 17 00:00:00 2001 From: Lars Hampe Date: Sat, 28 Sep 2024 20:11:23 +0200 Subject: [PATCH] feat: add docker-compose.yaml for local development --- docker-compose.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..78faec2 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,11 @@ +services: + postgres: + image: postgres:17-alpine + container_name: boring_postgres + ports: + - 5432:5432 + environment: + - POSTGRES_PASSWORD=postgres + - POSTGRES_USER=postgres + - POSTGRES_DB=postgres + \ No newline at end of file