Last active 1752618142

javif89's Avatar javif89 revised this gist 1752618141. Go to revision

1 file changed, 35 insertions

.dockerignore(file created)

@@ -0,0 +1,35 @@
1 + .env
2 + .env.example
3 +
4 + .git
5 + .gitignore
6 +
7 + node_modules
8 + /public/hot
9 + /public/storage
10 + /storage/*.key
11 +
12 + # Logs and cache
13 + *.log
14 + /storage/logs/*
15 + /storage/framework/cache/*
16 + /storage/framework/sessions/*
17 + /storage/framework/testing/*
18 + /storage/framework/views/*
19 + /storage/app/public/*
20 + /storage/app/private/*
21 + /bootstrap/cache/*.php
22 +
23 + .DS_Store
24 + Thumbs.db
25 + .idea
26 + .vscode
27 + *.swp
28 +
29 + # Docker itself
30 + docker-compose.yml
31 + Dockerfile
32 + .dockerignore
33 +
34 + /database/*.sqlite
35 + /database/*.db
Newer Older