-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.default
66 lines (51 loc) · 1.95 KB
/
config.default
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env sh
# shellcheck disable=SC2034
# Application environment
APPLICATION_NAME=Greenpeace P4 Docker application
GOOGLE_PROJECT_ID=planet-4-151612
MAINTAINER_EMAIL=plint@greenpeace.org
# application repository to build, expects a composer.json to be present,
# or alternate file defined by COMPOSER
GIT_SOURCE=https://github.com/greenpeace/planet4-base
# branch of application repository to build
# note, composer requires prefixes with dev- for branch names
# see: https://getcomposer.org/doc/articles/aliases.md#why-aliases-
GIT_REF=main
# default build tags are derived from `git rev-parse --abbrev-ref HEAD`
# Use SOURCE_VERSION or BUILD_TAG in environment or custom config to set these values
# Note that each step in the build chain relies on the previous image, so unless
# you really know what you're doing, these two values should probably be the same
# eg:
# SOURCE_VERSION=main
# BUILD_TAG=main
# Which timezone this container uses for logs etc
CONTAINER_TIMEZONE=UTC
# ============================================================================
# Current build tag (used in child images of the base image)
# Value intentionally blank - computed
SOURCE_VERSION=
# Infrastructure version numbers
# https://github.com/phusion/baseimage-docker/releases
BASEIMAGE_VERSION=jammy-1.0.1
# https://getcomposer.org/download/
COMPOSER_VERSION=2.5.7
# https://github.com/wp-cli/wp-cli/releases
WP_CLI_VERSION=2.8.0
# https://github.com/jwilder/dockerize/releases
DOCKERIZE_VERSION=0.6.1
# https://openresty.org/en/download.html
OPENRESTY_VERSION=1.15.8.2
OPENRESTY_SOURCE=source
# https://github.com/elastic/apm-agent-php/releases
APM_AGENT_PHP_VERSION=1.6.1
PHP_MAJOR_VERSION=8.1
SOURCE_PATH=/app/source
PUBLIC_PATH=/app/source/public
# ============================================================================
# Cloud builder configuration
BUILD_LOCALLY=false
BUILD_NAMESPACE=gcr.io
BUILD_REMOTELY=false
BUILD_TIMEOUT=30m
PULL_IMAGES=false
REWRITE_LOCAL_DOCKERFILES=true