Skip to content

Commit 3f0b878

Browse files
Add .gitignore and README.md
1 parent 53edcae commit 3f0b878

File tree

2 files changed

+178
-0
lines changed

2 files changed

+178
-0
lines changed

.gitignore

Lines changed: 164 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
2+
# Created by https://www.gitignore.io/api/code,linux,macos,windows,phpstorm
3+
# Edit at https://www.gitignore.io/?templates=code,linux,macos,windows,phpstorm
4+
5+
### Code ###
6+
.vscode/*
7+
!.vscode/settings.json
8+
!.vscode/tasks.json
9+
!.vscode/launch.json
10+
!.vscode/extensions.json
11+
12+
### Linux ###
13+
*~
14+
15+
# temporary files which can be created if a process still has a handle open of a deleted file
16+
.fuse_hidden*
17+
18+
# KDE directory preferences
19+
.directory
20+
21+
# Linux trash folder which might appear on any partition or disk
22+
.Trash-*
23+
24+
# .nfs files are created when an open file is removed but is still being accessed
25+
.nfs*
26+
27+
### macOS ###
28+
# General
29+
.DS_Store
30+
.AppleDouble
31+
.LSOverride
32+
33+
# Icon must end with two \r
34+
Icon
35+
36+
# Thumbnails
37+
._*
38+
39+
# Files that might appear in the root of a volume
40+
.DocumentRevisions-V100
41+
.fseventsd
42+
.Spotlight-V100
43+
.TemporaryItems
44+
.Trashes
45+
.VolumeIcon.icns
46+
.com.apple.timemachine.donotpresent
47+
48+
# Directories potentially created on remote AFP share
49+
.AppleDB
50+
.AppleDesktop
51+
Network Trash Folder
52+
Temporary Items
53+
.apdisk
54+
55+
### PhpStorm ###
56+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
57+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
58+
59+
# User-specific stuff
60+
.idea/**/workspace.xml
61+
.idea/**/tasks.xml
62+
.idea/**/usage.statistics.xml
63+
.idea/**/dictionaries
64+
.idea/**/shelf
65+
66+
# Generated files
67+
.idea/**/contentModel.xml
68+
69+
# Sensitive or high-churn files
70+
.idea/**/dataSources/
71+
.idea/**/dataSources.ids
72+
.idea/**/dataSources.local.xml
73+
.idea/**/sqlDataSources.xml
74+
.idea/**/dynamic.xml
75+
.idea/**/uiDesigner.xml
76+
.idea/**/dbnavigator.xml
77+
78+
# Gradle
79+
.idea/**/gradle.xml
80+
.idea/**/libraries
81+
82+
# Gradle and Maven with auto-import
83+
# When using Gradle or Maven with auto-import, you should exclude module files,
84+
# since they will be recreated, and may cause churn. Uncomment if using
85+
# auto-import.
86+
# .idea/modules.xml
87+
# .idea/*.iml
88+
# .idea/modules
89+
# *.iml
90+
# *.ipr
91+
92+
# CMake
93+
cmake-build-*/
94+
95+
# Mongo Explorer plugin
96+
.idea/**/mongoSettings.xml
97+
98+
# File-based project format
99+
*.iws
100+
101+
# IntelliJ
102+
out/
103+
104+
# mpeltonen/sbt-idea plugin
105+
.idea_modules/
106+
107+
# JIRA plugin
108+
atlassian-ide-plugin.xml
109+
110+
# Cursive Clojure plugin
111+
.idea/replstate.xml
112+
113+
# Crashlytics plugin (for Android Studio and IntelliJ)
114+
com_crashlytics_export_strings.xml
115+
crashlytics.properties
116+
crashlytics-build.properties
117+
fabric.properties
118+
119+
# Editor-based Rest Client
120+
.idea/httpRequests
121+
122+
# Android studio 3.1+ serialized cache file
123+
.idea/caches/build_file_checksums.ser
124+
125+
### PhpStorm Patch ###
126+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
127+
128+
# *.iml
129+
# modules.xml
130+
# .idea/misc.xml
131+
# *.ipr
132+
133+
# Sonarlint plugin
134+
.idea/sonarlint
135+
136+
### Windows ###
137+
# Windows thumbnail cache files
138+
Thumbs.db
139+
Thumbs.db:encryptable
140+
ehthumbs.db
141+
ehthumbs_vista.db
142+
143+
# Dump file
144+
*.stackdump
145+
146+
# Folder config file
147+
[Dd]esktop.ini
148+
149+
# Recycle Bin used on file shares
150+
$RECYCLE.BIN/
151+
152+
# Windows Installer files
153+
*.cab
154+
*.msi
155+
*.msix
156+
*.msm
157+
*.msp
158+
159+
# Windows shortcuts
160+
*.lnk
161+
162+
# Database data
163+
postgres/data
164+
# End of https://www.gitignore.io/api/code,linux,macos,windows,phpstorm

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# docker-php-nginx-redis-postgres
2+
3+
This is a backend stack of decoupled technologies in docker containers.
4+
If you have installed docker-compose only use
5+
6+
```bash
7+
docker-compose up --build
8+
```
9+
10+
It should run at [localhost](http://localhost:8080)
11+
12+
Otherwise please follow the steps in the [official docker documentation](https://docs.docker.com/install/linux/docker-ce/debian/) to install docker compose
13+
14+
## Thanks :)

0 commit comments

Comments
 (0)