From 8088417a376265a264347f35b4fc3499c4d96d24 Mon Sep 17 00:00:00 2001 From: Dylan De Faoite Date: Sat, 17 Jan 2026 22:16:19 +0000 Subject: [PATCH] Remove docker-compose.yml file --- docker-compose.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index e8982ba..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,18 +0,0 @@ -services: - postgres: - image: postgres:16 - container_name: ethnograph-db - restart: unless-stopped - environment: - POSTGRES_DB: ethnograph - POSTGRES_USER: ethnograph_user - POSTGRES_PASSWORD: ethnograph_pass - ports: - - "5432:5432" - volumes: - - /var/lib/postgresql/data - # add pg_data:/var/lib/postgresql/data to persist data - - ./db/sql:/docker-entrypoint-initdb.d - -volumes: - pgdata: