forked from dialoa/docker-ojs-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
40 lines (35 loc) · 885 Bytes
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Containers base name
COMPOSE_PROJECT_NAME=ojs-dev
# Services versions
OJSVERSION=stable-3_4_0
PHPVERSION=php81
DATABASE=mariadb112
PHPMYADMIN=phpmyadmin520
# Ports.
# Set non-used ports: if you are also running an apache instance
# serving :80 and :443, use different ports here.
HTTP_PORT=8081
HTTPS_PORT=8481
PHPHMYADMIN_HTTP_PORT=8082
PHPMYADMIN_HTTPS_PORT=8482
MYSQL_PORT=3306
# ADMINER_HTTP=9081 # from docker-ojs, not used?
# PHPMyAdmin
UPLOAD_LIMIT=512M
MEMORY_LIMIT=512M
# Database configuration
MYSQL_ROOT_PASSWORD=root
MYSQL_USER=ojs
MYSQL_PASSWORD=ojs
MYSQL_DATABASE=ojs
# Variables used by ojs scripts
# cf. services/php*/root/usr/local/bin/
# SEVERNAME used by ojs-cli-install and ojs-pre-start
PROJECT_DOMAIN=journal.localhost
SERVERNAME=$PROJECT_DOMAIN
OJS_CLI_INSTALL=0
OJS_DB_HOST=db
OJS_DB_DRIVER=mysqli
OJS_DB_USER=ojs
OJS_DB_PASSWORD=ojs
OJS_DB_NAME=ojs