forked from FiligranHQ/zotprime
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: copy dataserver during image buid and do not mount as a volume Reference minio/minio#5469 fix storage bugs (cherry picked from commit 404ded2) patch: k8s objects for tinymceclean, streamserver, redis, localstack, phpmyadmin, elasticsearch, memcached, mariadb, minio fix: fix docker compose CI fix: fix .gitignore feat: Added 1. dev, prod docker compose. 2. docker compose build CI workflow. 3. pre-built images configuration
- Loading branch information
Showing
91 changed files
with
1,991 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
**/secret.json | ||
**/secret.txt | ||
**/secret.yaml | ||
.git | ||
.github | ||
.env | ||
bin | ||
build | ||
doc | ||
docker-compose.yml | ||
logs | ||
Zend | ||
zotprime-k8s | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#Version | ||
VER=2.5.0-beta | ||
|
||
## SPECIFY SECRETS | ||
#DB | ||
MYSQLROOTPASSWORD=strongpassword | ||
MYSQLDATABASE=aotprimeprod | ||
MYSQLUSER=zotprimeprod | ||
MYSQLPASSWORD=strongpassword | ||
|
||
#MINIO | ||
MINIOROOTUSER=zotero | ||
MINIOROOTPASSWORD=strongpassword |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
.env | ||
build | ||
logs | ||
logs | ||
**/secret.json | ||
**/secret.txt | ||
**/secret.yaml | ||
docker-compose.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
|
||
FROM node:16-alpine as intermediate | ||
ARG ZOTPRIME_VERSION=2 | ||
|
||
RUN set -eux; \ | ||
apk update && apk upgrade && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
**/secret.json | ||
**/secret.txt | ||
**/secret.yaml | ||
.env | ||
.github | ||
bin | ||
build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
############################ | ||
# mariadb image | ||
############################ | ||
|
||
FROM mariadb:10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
**/secret.json | ||
**/secret.txt | ||
**/secret.yaml | ||
.git | ||
.github | ||
.env | ||
bin | ||
build | ||
client | ||
dataserver | ||
doc | ||
docker | ||
docker-compose.yml | ||
logs | ||
stream-server | ||
tinymce-clean-server | ||
Zend | ||
zotprime-k8s | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.