diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..3e36563 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,14 @@ +services: + postgres: + image: postgres:16 + container_name: postgres_db + restart: unless-stopped + env_file: + - .env + ports: + - "5432:5432" + volumes: + - postgres_data:/var/lib/postgresql/data + +volumes: + postgres_data: \ No newline at end of file