Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
a03f8f14
Commit
a03f8f14
authored
May 08, 2017
by
Timothy Andrew
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update gitignore, dockerfile, and license templates for 9.2.
parent
6386e42f
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
99 additions
and
1 deletion
+99
-1
vendor/Dockerfile/OpenJDK-alpine.Dockerfile
vendor/Dockerfile/OpenJDK-alpine.Dockerfile
+8
-0
vendor/Dockerfile/OpenJDK.Dockerfile
vendor/Dockerfile/OpenJDK.Dockerfile
+8
-0
vendor/Dockerfile/Python-alpine.Dockerfile
vendor/Dockerfile/Python-alpine.Dockerfile
+19
-0
vendor/Dockerfile/Python.Dockerfile
vendor/Dockerfile/Python.Dockerfile
+22
-0
vendor/gitignore/Global/Archives.gitignore
vendor/gitignore/Global/Archives.gitignore
+1
-0
vendor/gitignore/Global/JetBrains.gitignore
vendor/gitignore/Global/JetBrains.gitignore
+3
-0
vendor/gitignore/Global/MicrosoftOffice.gitignore
vendor/gitignore/Global/MicrosoftOffice.gitignore
+1
-1
vendor/gitignore/Magento.gitignore
vendor/gitignore/Magento.gitignore
+27
-0
vendor/gitignore/Python.gitignore
vendor/gitignore/Python.gitignore
+4
-0
vendor/gitignore/Qt.gitignore
vendor/gitignore/Qt.gitignore
+1
-0
vendor/gitignore/UnrealEngine.gitignore
vendor/gitignore/UnrealEngine.gitignore
+5
-0
No files found.
vendor/Dockerfile/OpenJDK-alpine.Dockerfile
0 → 100644
View file @
a03f8f14
FROM
openjdk:8-alpine
COPY
. /usr/src/myapp
WORKDIR
/usr/src/myapp
RUN
javac Main.java
CMD
["java", "Main"]
vendor/Dockerfile/OpenJDK.Dockerfile
0 → 100644
View file @
a03f8f14
FROM
openjdk:9
COPY
. /usr/src/myapp
WORKDIR
/usr/src/myapp
RUN
javac Main.java
CMD
["java", "Main"]
vendor/Dockerfile/Python-alpine.Dockerfile
0 → 100644
View file @
a03f8f14
FROM
python:3.6-alpine
# Edit with mysql-client, postgresql-client, sqlite3, etc. for your needs.
# Or delete entirely if not needed.
RUN
apk
--no-cache
add postgresql-client
WORKDIR
/usr/src/app
COPY
requirements.txt /usr/src/app/
RUN
pip
install
--no-cache-dir
-r
requirements.txt
COPY
. /usr/src/app
# For Django
EXPOSE
8000
CMD
["python", "manage.py", "runserver", "0.0.0.0:8000"]
# For some other command
# CMD ["python", "app.py"]
vendor/Dockerfile/Python.Dockerfile
0 → 100644
View file @
a03f8f14
FROM
python:3.6
# Edit with mysql-client, postgresql-client, sqlite3, etc. for your needs.
# Or delete entirely if not needed.
RUN
apt-get update
\
&&
apt-get
install
-y
--no-install-recommends
\
postgresql-client
\
&&
rm
-rf
/var/lib/apt/lists/
*
WORKDIR
/usr/src/app
COPY
requirements.txt /usr/src/app/
RUN
pip
install
--no-cache-dir
-r
requirements.txt
COPY
. /usr/src/app
# For Django
EXPOSE
8000
CMD
["python", "manage.py", "runserver", "0.0.0.0:8000"]
# For some other command
# CMD ["python", "app.py"]
vendor/gitignore/Global/Archives.gitignore
View file @
a03f8f14
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
*.rar
*.rar
*.zip
*.zip
*.gz
*.gz
*.tgz
*.bzip
*.bzip
*.bz2
*.bz2
*.xz
*.xz
...
...
vendor/gitignore/Global/JetBrains.gitignore
View file @
a03f8f14
...
@@ -19,6 +19,9 @@
...
@@ -19,6 +19,9 @@
.idea/**/gradle.xml
.idea/**/gradle.xml
.idea/**/libraries
.idea/**/libraries
# CMake
cmake-build-debug/
# Mongo Explorer plugin:
# Mongo Explorer plugin:
.idea/**/mongoSettings.xml
.idea/**/mongoSettings.xml
...
...
vendor/gitignore/Global/MicrosoftOffice.gitignore
View file @
a03f8f14
...
@@ -13,4 +13,4 @@
...
@@ -13,4 +13,4 @@
~$*.ppt*
~$*.ppt*
# Visio autosave temporary files
# Visio autosave temporary files
*.~vsd
x
*.~vsd
*
vendor/gitignore/Magento.gitignore
View file @
a03f8f14
...
@@ -3,14 +3,41 @@
...
@@ -3,14 +3,41 @@
#--------------------------#
#--------------------------#
/app/etc/local.xml
/app/etc/local.xml
/media/*
/media/*
!/media/.htaccess
!/media/.htaccess
!/media/customer
/media/customer/*
!/media/customer/.htaccess
!/media/customer/.htaccess
!/media/dhl
/media/dhl/*
!/media/dhl/logo.jpg
!/media/dhl/logo.jpg
!/media/downloadable
/media/downloadable/*
!/media/downloadable/.htaccess
!/media/downloadable/.htaccess
!/media/xmlconnect
/media/xmlconnect/*
!/media/xmlconnect/custom
/media/xmlconnect/custom/*
!/media/xmlconnect/custom/ok.gif
!/media/xmlconnect/custom/ok.gif
!/media/xmlconnect/original
/media/xmlconnect/original/*
!/media/xmlconnect/original/ok.gif
!/media/xmlconnect/original/ok.gif
!/media/xmlconnect/system
/media/xmlconnect/system/*
!/media/xmlconnect/system/ok.gif
!/media/xmlconnect/system/ok.gif
/var/*
/var/*
!/var/.htaccess
!/var/.htaccess
!/var/package
/var/package/*
!/var/package/*.xml
!/var/package/*.xml
vendor/gitignore/Python.gitignore
View file @
a03f8f14
...
@@ -89,9 +89,13 @@ ENV/
...
@@ -89,9 +89,13 @@ ENV/
# Spyder project settings
# Spyder project settings
.spyderproject
.spyderproject
.spyproject
# Rope project settings
# Rope project settings
.ropeproject
.ropeproject
# mkdocs documentation
# mkdocs documentation
/site
/site
# mypy
.mypy_cache/
vendor/gitignore/Qt.gitignore
View file @
a03f8f14
...
@@ -20,6 +20,7 @@
...
@@ -20,6 +20,7 @@
*.qbs.user.*
*.qbs.user.*
*.moc
*.moc
moc_*.cpp
moc_*.cpp
moc_*.h
qrc_*.cpp
qrc_*.cpp
ui_*.h
ui_*.h
Makefile*
Makefile*
...
...
vendor/gitignore/UnrealEngine.gitignore
View file @
a03f8f14
...
@@ -54,6 +54,11 @@ Binaries/*
...
@@ -54,6 +54,11 @@ Binaries/*
# Builds
# Builds
Build/*
Build/*
# Whitelist PakBlacklist-<BuildConfiguration>.txt files
!Build/*/
Build/*/**
!Build/*/PakBlacklist*.txt
# Don't ignore icon files in Build
# Don't ignore icon files in Build
!Build/**/*.ico
!Build/**/*.ico
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment