41 lines
507 B
Plaintext
41 lines
507 B
Plaintext
# Ignore git metadata
|
|
.git
|
|
.gitignore
|
|
|
|
# Ignore container/build files themselves
|
|
Containerfile
|
|
Dockerfile
|
|
.containerignore
|
|
.dockerignore
|
|
|
|
# Compose (no longer used)
|
|
podman-compose.yml
|
|
docker-compose.yml
|
|
|
|
# Scripts and docs
|
|
pod-start.ps1
|
|
pod-stop.ps1
|
|
PODMAN-SETUP.md
|
|
README.md
|
|
|
|
# IDE / OS artifacts
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# Node modules will be installed fresh in the container
|
|
node_modules
|
|
package-lock.json
|
|
|
|
# Python caches
|
|
__pycache__
|
|
*.pyc
|
|
|
|
# Generated at runtime
|
|
certs/
|
|
*.log
|