-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env-example
More file actions
37 lines (31 loc) · 1.15 KB
/
.env-example
File metadata and controls
37 lines (31 loc) · 1.15 KB
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
# Docker Compose Project Name
COMPOSE_PROJECT_NAME=php-5-6-apache
# Target build/use environment
APP_ENV=local
# set the PHP version for descriptions & such
PHP_VERSION=5.6
# Making the npm versions changeable
NPM_VERSION=6.4.1
# Docker compose image details
DOCKER_BUILD_REPO=docker_user
# Docker Build Details
DOCKER_COMPOSE_BUILD_FILE=docker-compose-build.yaml
DOCKER_COMPOSE_FILE=docker-compose.yaml
DOCKER_BUILD_FILE=php-5-6-apache.Dockerfile
DOCKER_BUILD_TARGET=build-php-56-apache
DOCKER_BUILD_IMAGE=php-5.6-apache
DOCKER_BUILD_VERSION=v0.0.1
DOCKER_BUILD_SERVICE=php-5-6-apache
DOCKER_BUILD_DESC="PHP ${PHP_VERSION} & Apache Web Server"
# PHP 5.6 Apache 2 Build Specifics
APACHE_PHP56_DOCKER_BUILD_TARGET="${DOCKER_BUILD_TARGET}"
APACHE_PHP56_DOCKER_BUILD_IMAGE="${DOCKER_BUILD_IMAGE}"
APACHE_PHP56_DOCKER_BUILD_IMAGE_TAG="${DOCKER_BUILD_VERSION}"
# PHP 5.6 Apache 2
APACHE_PHP56_DOCKER_SERVICE="${DOCKER_BUILD_SERVICE}"
APACHE_PHP56_DOCKER_BOX="${APACHE_PHP56_DOCKER_SERVICE}"
APACHE_PHP56_DOCKER_IMAGE="${APACHE_PHP56_DOCKER_BUILD_IMAGE}"
APACHE_PHP56_DOCKER_IMAGE_TAG="${APACHE_PHP56_DOCKER_BUILD_IMAGE_TAG}"
# App webserver ports
APP_PORT=8082
APP_SSL_PORT=8243