Skip to content

Commit d439e20

Browse files
committed
Initial commit
0 parents  commit d439e20

File tree

4 files changed

+268
-0
lines changed

4 files changed

+268
-0
lines changed

.dockerignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.git
2+
.gitignore
3+
Jenkinsfile
4+
Dockerfile*
5+
.*.swp
6+
docker-compose*
7+
.dockerignore
8+
node_modules

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
VAR1=var1value
2+
VAR2=var2value

.gitignore

Lines changed: 245 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,245 @@
1+
#Original source: https://github.com/github/gitignore
2+
3+
#IGNORE:C
4+
# Object files
5+
*.o
6+
*.ko
7+
*.obj
8+
*.elf
9+
10+
# Precompiled Headers
11+
*.gch
12+
*.pch
13+
14+
# Libraries
15+
*.lib
16+
*.a
17+
*.la
18+
*.lo
19+
20+
# Shared objects (inc. Windows DLLs)
21+
*.dll
22+
*.so
23+
*.so.*
24+
*.dylib
25+
26+
# Executables
27+
*.exe
28+
*.out
29+
*.app
30+
*.i*86
31+
*.x86_64
32+
*.hex
33+
34+
#IGNORE:C++
35+
# Compiled Object files
36+
*.slo
37+
*.lo
38+
*.o
39+
*.obj
40+
41+
# Precompiled Headers
42+
*.gch
43+
*.pch
44+
45+
# Compiled Dynamic libraries
46+
*.so
47+
*.dylib
48+
*.dll
49+
50+
# Compiled Static libraries
51+
*.lai
52+
*.la
53+
*.a
54+
*.lib
55+
56+
# Executables
57+
*.exe
58+
*.out
59+
*.app
60+
61+
#IGNORE:CMAKE
62+
CMakeCache.txt
63+
CMakeFiles
64+
Makefile
65+
cmake_install.cmake
66+
install_manifest.txt
67+
68+
#IGNORE:XCode
69+
build/
70+
*.pbxuser
71+
!default.pbxuser
72+
*.mode1v3
73+
!default.mode1v3
74+
*.mode2v3
75+
!default.mode2v3
76+
*.perspectivev3
77+
!default.perspectivev3
78+
xcuserdata
79+
*.xccheckout
80+
*.moved-aside
81+
DerivedData
82+
*.xcuserstate
83+
84+
85+
#IGNORE:VIM
86+
[._]*.s[a-w][a-z]
87+
[._]s[a-w][a-z]
88+
*.un~
89+
Session.vim
90+
.netrwhist
91+
*~
92+
93+
#IGNORE:SUBLIME
94+
# cache files for sublime text
95+
*.tmlanguage.cache
96+
*.tmPreferences.cache
97+
*.stTheme.cache
98+
99+
# workspace files are user-specific
100+
*.sublime-workspace
101+
102+
# project files should be checked into the repository, unless a significant
103+
# proportion of contributors will probably not be using SublimeText
104+
# *.sublime-project
105+
106+
# sftp configuration file
107+
sftp-config.json
108+
109+
#IGNORE:OSX
110+
.DS_Store
111+
.AppleDouble
112+
.LSOverride
113+
114+
# Icon must end with two \r
115+
Icon
116+
117+
# Thumbnails
118+
._*
119+
120+
# Files that might appear on external disk
121+
.Spotlight-V100
122+
.Trashes
123+
124+
# Directories potentially created on remote AFP share
125+
.AppleDB
126+
.AppleDesktop
127+
Network Trash Folder
128+
Temporary Items
129+
.apdisk
130+
131+
#IGNORE:Eclipse
132+
*.pydevproject
133+
.metadata
134+
.gradle
135+
bin/
136+
tmp/
137+
*.tmp
138+
*.bak
139+
*.swp
140+
*~.nib
141+
local.properties
142+
.settings/
143+
.loadpath
144+
145+
# External tool builders
146+
.externalToolBuilders/
147+
148+
# Locally stored "Eclipse launch configurations"
149+
*.launch
150+
151+
# CDT-specific
152+
.cproject
153+
154+
# PDT-specific
155+
.buildpath
156+
157+
# sbteclipse plugin
158+
.target
159+
160+
# TeXlipse plugin
161+
.texlipse
162+
163+
#IGNORE:EMACS
164+
# -*- mode: gitignore; -*-
165+
*~
166+
\#*\#
167+
/.emacs.desktop
168+
/.emacs.desktop.lock
169+
*.elc
170+
auto-save-list
171+
tramp
172+
.\#*
173+
174+
# Org-mode
175+
.org-id-locations
176+
*_archive
177+
178+
# flymake-mode
179+
*_flymake.*
180+
181+
# eshell files
182+
/eshell/history
183+
/eshell/lastdir
184+
185+
# elpa packages
186+
/elpa/
187+
188+
# reftex files
189+
*.rel
190+
191+
# AUCTeX auto folder
192+
/auto/
193+
194+
195+
#IGNORE:JetBrain
196+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
197+
198+
/*.iml
199+
200+
## Directory-based project format:
201+
.idea/
202+
# if you remove the above rule, at least ignore the following:
203+
204+
# User-specific stuff:
205+
# .idea/workspace.xml
206+
# .idea/tasks.xml
207+
# .idea/dictionaries
208+
209+
# Sensitive or high-churn files:
210+
# .idea/dataSources.ids
211+
# .idea/dataSources.xml
212+
# .idea/sqlDataSources.xml
213+
# .idea/dynamic.xml
214+
# .idea/uiDesigner.xml
215+
216+
# Gradle:
217+
# .idea/gradle.xml
218+
# .idea/libraries
219+
220+
# Mongo Explorer plugin:
221+
# .idea/mongoSettings.xml
222+
223+
## File-based project format:
224+
*.ipr
225+
*.iws
226+
227+
## Plugin-specific files:
228+
229+
# IntelliJ
230+
out/
231+
232+
# mpeltonen/sbt-idea plugin
233+
.idea_modules/
234+
235+
# JIRA plugin
236+
atlassian-ide-plugin.xml
237+
238+
# Crashlytics plugin (for Android Studio and IntelliJ)
239+
com_crashlytics_export_strings.xml
240+
241+
#log
242+
*.log
243+
#env files for docker-compose
244+
.env*
245+
!.env.example

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Dockerized repository
2+
3+
## Configuration
4+
- Configure variables in .env. See .env.example for template.
5+
Reasonable defaults are provided.
6+
7+
## Usage
8+
- Run with docker-compose
9+
```
10+
$ docker-compose up -d
11+
```
12+
13+

0 commit comments

Comments
 (0)