Skip to content

Commit 94f945c

Browse files
committed
Initial Commit
0 parents  commit 94f945c

File tree

301 files changed

+72378
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

301 files changed

+72378
-0
lines changed

Diff for: .env

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# Please Note:
2+
# In PHP Versions <= 7.4 MySQL8 is not supported due to lacking pdo support
3+
4+
# To determine the name of your containers
5+
COMPOSE_PROJECT_NAME=codeigniter3
6+
7+
# Possible values: php54, php56, php71, php72, php73, php74, php8, php81
8+
PHPVERSION=php74
9+
DOCUMENT_ROOT=./www
10+
APACHE_DOCUMENT_ROOT=/var/www/html
11+
VHOSTS_DIR=./config/vhosts
12+
APACHE_LOG_DIR=./logs/apache2
13+
PHP_INI=./config/php/php.ini
14+
SSL_DIR=./config/ssl
15+
16+
# PHPMyAdmin
17+
UPLOAD_LIMIT=512M
18+
MEMORY_LIMIT=512M
19+
20+
# Xdebug
21+
XDEBUG_LOG_DIR=./logs/xdebug
22+
XDEBUG_PORT=9003
23+
#XDEBUG_PORT=9000
24+
25+
# Possible values: mysql57, mysql8, mariadb103, mariadb104, mariadb105, mariadb106
26+
#
27+
# For Apple Silicon User:
28+
# Please select Mariadb as Database. Oracle doesn't build their SQL Containers for the arm Architecure
29+
30+
DATABASE=mariadb106
31+
MYSQL_INITDB_DIR=./config/initdb
32+
MYSQL_DATA_DIR=./data/mysql
33+
MYSQL_LOG_DIR=./logs/mysql
34+
35+
# If you already have the port 80 in use, you can change it (for example if you have Apache)
36+
HOST_MACHINE_UNSECURE_HOST_PORT=80
37+
38+
# If you already have the port 443 in use, you can change it (for example if you have Apache)
39+
HOST_MACHINE_SECURE_HOST_PORT=443
40+
41+
# If you already have the port 3306 in use, you can change it (for example if you have MySQL)
42+
HOST_MACHINE_MYSQL_PORT=3306
43+
44+
# If you already have the port 8080 in use, you can change it (for example if you have PMA)
45+
HOST_MACHINE_PMA_PORT=8080
46+
HOST_MACHINE_PMA_SECURE_PORT=8081
47+
48+
# If you already has the port 6379 in use, you can change it (for example if you have Redis)
49+
HOST_MACHINE_REDIS_PORT=6379
50+
51+
# MySQL root user password
52+
MYSQL_ROOT_PASSWORD=password
53+
54+
# Database settings: Username, password and database name
55+
#
56+
# If you need to give the docker user access to more databases than the "docker" db
57+
# you can grant the privileges with phpmyadmin to the user.
58+
MYSQL_USER=root
59+
MYSQL_PASSWORD=password
60+
MYSQL_DATABASE=syxDocker

Diff for: .github/ISSUE_TEMPLATE/bug_report.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG]"
5+
labels: ''
6+
assignees: MrOffline77
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**which Branch / PHP Version are you using ?**
14+
php74
15+
16+
**Steps to reproduce**
17+
Steps to reproduce the behavior:
18+
1. Go to '...'
19+
2. Click on '....'
20+
3. Scroll down to '....'
21+
4. See error
22+
23+
**Expected behavior**
24+
A clear and concise description of what you expected to happen.
25+
26+
**Screenshots**
27+
If applicable, add screenshots to help explain your problem.
28+
29+
**Desktop (please complete the following information):**
30+
- OS: [e.g. MacOS, Linux, Ubuntu]
31+
- Browser [e.g. chrome, safari]
32+
- Docker Version:
33+
```
34+
docker -v
35+
Docker version 19.03.5, build 633a0ea
36+
```
37+
**Additional context**
38+
Add any other context about the problem here.

Diff for: .github/ISSUE_TEMPLATE/feature_request.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[FEATURE]"
5+
labels: ''
6+
assignees: MrOffline77
7+
8+
---
9+
10+
**About which PHP Version we are talking ?**
11+
12+
**Is your feature request related to a problem? Please describe.**
13+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
14+
15+
**Describe the solution you'd like**
16+
A clear and concise description of what you want to happen.
17+
18+
**Describe alternatives you've considered**
19+
A clear and concise description of any alternative solutions or features you've considered.
20+
21+
**Additional context**
22+
Add any other context or screenshots about the feature request here.

Diff for: .gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# /.env
2+
/.vscode
3+
# /config/*
4+
# /data/*
5+
# /logs/*
6+
# /www/**
7+
.DS_Store
8+
/buildtest

Diff for: LICENSE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
MIT License
2+
3+
Copyright (c) 2017 Narendra Vaghela
4+
Copyright (c) 2019 Malte Graebner aka (MrOffline77)
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in all
14+
copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
SOFTWARE.

0 commit comments

Comments
 (0)