1# .dockerignore
2# Git
3.git
4.gitignore
5.github
6
7# Documentation
8README.md
9LICENSE
10*.md
11
12# Tests
13*_test.go
14coverage.out
15coverage.html
16
17# Build artifacts
18plcdns
19*.exe
20*.dll
21*.so
22*.dylib
23*.test
24*.out
25
26# IDE
27.vscode
28.idea
29*.swp
30*.swo
31*~
32
33# OS
34.DS_Store
35Thumbs.db
36
37# Docker
38Dockerfile
39docker-compose.yml
40.dockerignore