Files
nextcloud/.dockerignore
T

18 lines
446 B
Plaintext
Raw Normal View History

2022-10-04 21:48:50 -04:00
# Files to ignore
2026-05-12 20:07:33 -04:00
# Tell docker to ignore .gitkeep
2022-10-04 21:48:50 -04:00
.gitkeep
2026-05-12 20:07:33 -04:00
# Tell docker to ignore .gitignore
2022-10-04 21:48:50 -04:00
.gitignore
2026-05-12 20:07:33 -04:00
# Tell docker to ignore node_modules/**
2023-01-08 11:20:42 -05:00
node_modules/**
2026-05-12 20:07:33 -04:00
# Tell docker to ignore .node_modules/**
.node_modules/**
# Tell docker to ignore **/.gitkeep
2023-01-08 11:20:42 -05:00
**/.gitkeep
2026-05-12 20:07:33 -04:00
# Tell docker to ignore **/.gitignore
2023-01-08 11:20:42 -05:00
**/.gitignore
2026-05-12 20:07:33 -04:00
# Tell docker to ignore **/node_modules/**
2023-01-08 11:20:42 -05:00
**/node_modules/**
2026-05-12 20:07:33 -04:00
# Tell docker to ignore **/.node_modules/**
2023-01-08 11:20:42 -05:00
**/.node_modules/**