fix: .dockerignore + LAN port binding
- Add .dockerignore to prevent host node_modules (GLIBC 2.38) from overwriting container-built binaries (GLIBC 2.36), fixing better-sqlite3 ERR_DLOPEN_FAILED crash - Bind port to 0.0.0.0 for LAN access Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,6 @@
|
|||||||
|
node_modules
|
||||||
|
.git
|
||||||
|
.env
|
||||||
|
*.md
|
||||||
|
oikos-redesign-spec.md
|
||||||
|
CLAUDE.md
|
||||||
+1
-1
@@ -4,7 +4,7 @@ services:
|
|||||||
container_name: oikos
|
container_name: oikos
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- "3000:3000"
|
- "0.0.0.0:3000:3000"
|
||||||
volumes:
|
volumes:
|
||||||
- oikos_data:/data
|
- oikos_data:/data
|
||||||
env_file:
|
env_file:
|
||||||
|
|||||||
Reference in New Issue
Block a user