From 3a769ccece9319abac29a002aabed6578b9f4e76 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Sun, 15 Feb 2026 14:44:27 -0800 Subject: Add docker-compose.dev.yaml for consistent containerized development environment --- docker-compose.dev.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 docker-compose.dev.yaml (limited to 'docker-compose.dev.yaml') diff --git a/docker-compose.dev.yaml b/docker-compose.dev.yaml new file mode 100644 index 0000000..036761d --- /dev/null +++ b/docker-compose.dev.yaml @@ -0,0 +1,21 @@ +services: + neko-dev: + container_name: neko-dev + build: + context: . + dockerfile: .devcontainer/Dockerfile + volumes: + - .:/workspace + working_dir: /workspace + command: sleep infinity + ports: + # Backend + - "8080:8080" + # Frontend (Vite) + - "5173:5173" + # Optional: Range for dynamic dev tools/debuggers if needed + # (Uncomment if you hit port binding issues with specific tools) + # - "60000-65000:60000-65000" + # Security options to help with permission issues on some setups + security_opt: + - label=disable -- cgit v1.2.3