mirror of
https://github.com/casjaysdevdocker/gitea
synced 2024-11-21 11:23:07 -05:00
18 lines
446 B
Plaintext
18 lines
446 B
Plaintext
|
# Files to ignore
|
||
|
# Tell docker to ignore .gitkeep
|
||
|
.gitkeep
|
||
|
# Tell docker to ignore .gitignore
|
||
|
.gitignore
|
||
|
# Tell docker to ignore node_modules/**
|
||
|
node_modules/**
|
||
|
# Tell docker to ignore .node_modules/**
|
||
|
.node_modules/**
|
||
|
# Tell docker to ignore **/.gitkeep
|
||
|
**/.gitkeep
|
||
|
# Tell docker to ignore **/.gitignore
|
||
|
**/.gitignore
|
||
|
# Tell docker to ignore **/node_modules/**
|
||
|
**/node_modules/**
|
||
|
# Tell docker to ignore **/.node_modules/**
|
||
|
**/.node_modules/**
|