diff --git a/docker-compose.override.yml b/docker-compose.override.yml deleted file mode 100644 index 9e78ec2..0000000 --- a/docker-compose.override.yml +++ /dev/null @@ -1,8 +0,0 @@ -services: - backend: - volumes: - - /path/to/local/backend:/app - - frontend: - volumes: - - /path/to/local/frontend:/app diff --git a/docker-compose_ssh_git.yml b/docker-compose_ssh_git.yml deleted file mode 100644 index e37b29a..0000000 --- a/docker-compose_ssh_git.yml +++ /dev/null @@ -1,41 +0,0 @@ -services: - db: - image: postgres:13 - volumes: - - postgres_data:/var/lib/postgresql/data - environment: - - POSTGRES_DB=todo_db - - POSTGRES_USER=postgres - - POSTGRES_PASSWORD=postgres - ports: - - "5432:5432" - - backend: - build: - context: ssh://git@git.impstyle.com:222/test/demo-backend.git#main # Replace with your backend repo URL - dockerfile: Dockerfile - ports: - - "8000:8000" - environment: - - DB_NAME=todo_db - - DB_USER=postgres - - DB_PASSWORD=postgres - - DB_HOST=db - - DB_PORT=5432 - - DEBUG=1 - depends_on: - - db - - frontend: - build: - context: ssh://git@git.impstyle.com:222/test/demo-frontend.git#main # Replace with your frontend repo URL - dockerfile: Dockerfile - ports: - - "5173:5173" - environment: - - VITE_API_URL=http://localhost:8000/api - depends_on: - - backend - -volumes: - postgres_data: