49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
# ──────────────────────────────────────────────────────────────────────────────
|
|
# .dockerignore — fail yang TIDAK disertakan dalam Docker build context
|
|
# ──────────────────────────────────────────────────────────────────────────────
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Dependencies (akan dipasang semula dalam container)
|
|
node_modules
|
|
vendor
|
|
|
|
# Environment secrets
|
|
.env
|
|
.env.*
|
|
!.env.docker
|
|
!.env.example
|
|
|
|
# Build output (akan dihasilkan semula)
|
|
public/hot
|
|
public/build
|
|
|
|
# Dev tools
|
|
.idea
|
|
.vscode
|
|
*.code-workspace
|
|
.editorconfig
|
|
.phpunit.cache
|
|
phpunit.xml
|
|
|
|
# Docker Compose files (tidak perlu dalam app container)
|
|
docker-compose*.yml
|
|
# docker/ TIDAK diexclude — Dockerfile perlukan docker/entrypoint.sh dan docker/php/php.ini
|
|
|
|
# Logs & cache
|
|
storage/logs/*
|
|
storage/framework/cache/*
|
|
storage/framework/sessions/*
|
|
storage/framework/views/*
|
|
bootstrap/cache/*
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Tests
|
|
tests/
|