Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DevOrig to ReBrand #7

Open
wants to merge 43 commits into
base: feature/Rebrand
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
bd97dc9
v2.9.3 Community Updates
ZeroCoolGOS Mar 4, 2021
83517b3
Merge pull request #41 from ZeroCoolGOS/feature/v2.9.x
MattsShack Mar 6, 2021
07b6ea4
v2.10.0 Community Updates**\
ZeroCoolGOS Mar 9, 2021
4cab9a0
Merge pull request #47 from ZeroCoolGOS/feature/2.10.x
MattsShack Mar 9, 2021
2960482
Merge pull request #8 from ZeroCoolGOS/devOrig
ZeroCoolGOS Mar 9, 2021
f5316f3
v2.10.1 Community Updates
ZeroCoolGOS Mar 10, 2021
775ec60
Merge pull request #50 from ZeroCoolGOS/feature/2.10.x
MattsShack Mar 10, 2021
4951a78
v2.10.2 Community Updates**\
ZeroCoolGOS Mar 13, 2021
f79cc4e
Merge pull request #53 from ZeroCoolGOS/feature/2.10.x
MattsShack Mar 13, 2021
b9d935d
v2.10.3 Community Updates
ZeroCoolGOS Mar 15, 2021
3b08683
Merge pull request #54 from ZeroCoolGOS/feature/2.10.x
MattsShack Mar 15, 2021
31cc4e2
v2.10.4 Community Updates
ZeroCoolGOS Mar 16, 2021
556d635
v2.10.4 Community Updates
ZeroCoolGOS Mar 16, 2021
0474dd0
Merge pull request #55 from ZeroCoolGOS/feature/2.10.x
MattsShack Mar 16, 2021
4106ff8
v2.10.5 Community Updates
ZeroCoolGOS Mar 19, 2021
b32c189
Merge pull request #56 from ZeroCoolGOS/feature/2.10.x
MattsShack Mar 20, 2021
5ed37c9
v2.10.6 Community Updates
ZeroCoolGOS Mar 20, 2021
e812167
Merge pull request #61 from ZeroCoolGOS/feature/2.10.x
MattsShack Mar 21, 2021
3a3f2f3
v2.11.0 Community Updates
ZeroCoolGOS Mar 23, 2021
f3dea9d
v2.11.0 Community Updates
ZeroCoolGOS Mar 23, 2021
d7ee7cf
Merge pull request #65 from ZeroCoolGOS/feature/2.11.x
MattsShack Mar 23, 2021
7d5f43d
v2.11.1 Community Updates
ZeroCoolGOS Mar 24, 2021
ed9f133
Merge pull request #66 from ZeroCoolGOS/feature/2.11.x
MattsShack Mar 24, 2021
c832299
v2.11.2 Community Updates
ZeroCoolGOS Mar 25, 2021
6a42dab
Merge pull request #69 from ZeroCoolGOS/feature/2.11.x
MattsShack Mar 25, 2021
29c6079
v2.11.3 Community Updates
ZeroCoolGOS Mar 26, 2021
e0b44a5
Merge pull request #73 from ZeroCoolGOS/feature/2.11.x
MattsShack Mar 26, 2021
c1a40cb
v2.11.4 Community Updates**\
ZeroCoolGOS Mar 30, 2021
335279c
Merge pull request #76 from ZeroCoolGOS/feature/2.11.x
MattsShack Mar 30, 2021
de70a1e
v2.11.5 Community Updates
ZeroCoolGOS Apr 1, 2021
31aa51e
Merge pull request #77 from ZeroCoolGOS/feature/2.11.x
MattsShack Apr 1, 2021
7e98c59
v2.11.6 Community Updates
ZeroCoolGOS Apr 3, 2021
a9ef172
v2.11.6 Community Updates
ZeroCoolGOS Apr 3, 2021
ba0fde3
Merge pull request #78 from ZeroCoolGOS/feature/2.11.x
MattsShack Apr 3, 2021
f73862e
v2.11.7 Community Updates
ZeroCoolGOS Apr 5, 2021
60021a2
Merge pull request #80 from ZeroCoolGOS/feature/2.11.x
MattsShack Apr 5, 2021
8f5bf8e
v2.11.8 Community Updates
ZeroCoolGOS Apr 7, 2021
06d85e0
Merge pull request #84 from ZeroCoolGOS/feature/2.11.x
MattsShack Apr 11, 2021
1a156a8
v2.12.0 Community Updates
ZeroCoolGOS May 16, 2021
10ec07f
Merge pull request #86 from ZeroCoolGOS/feature/2.12.x
MattsShack May 16, 2021
d0f6ac1
v2.12.1 Community Updates
ZeroCoolGOS May 24, 2021
1ffe9bd
v2.12.1 Community Updates
ZeroCoolGOS May 24, 2021
5e0d95a
Merge pull request #87 from ZeroCoolGOS/feature/2.12.x
MattsShack May 24, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ RUN apt-get update && apt-get install -y \
php-xml \
php-zip \
# python3 \
ssh \
supervisor

#region Install PHP 8.0 software packages (Prototype)
Expand All @@ -44,6 +45,19 @@ RUN apt-get update && apt-get install -y \
# RUN apt-get upgrade -y
#endregion

#region SSH
#Set password to root account
RUN echo 'root:password' | chpasswd

#Enable login to root account
RUN sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/g' /etc/ssh/sshd_config
#endregion

#region Set: TimeZone
ENV TZ=America/Los_Angeles
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
#endregion

#region Setup PHP with NGINX
WORKDIR ${nginxpath}/sites-enabled/

Expand Down
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ ignore:
sha: []
merge-message-formats: {}
mode: ContinuousDelivery
next-version: 2.9.2
next-version: 2.12.1
Loading