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