-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
54 lines (51 loc) · 2 KB
/
.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
#
# Stafli HTTPd Proxy Server (envfile)
# Copyright (C) 2016-2017 Stafli
# Luís Pedro Algarvio
# This file is part of the Stafli Application Stack.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Settings
COMPOSE_PROJECT_NAME="stafli";
IMAGE_TAG_PREFIX="httpd";
IMAGE_URL_PREFIX="stafli/stafli.proxy.httpd";
CONTAINER_URL_PREFIX="stafli_proxy_httpd";
VOLUME_URL_PREFIX="stafli_proxy_httpd";
DISTRO_DEBIAN8_VERSION="24";
DISTRO_DEBIAN7_VERSION="22";
DISTRO_CENTOS7_VERSION="24";
DISTRO_CENTOS6_VERSION="22";
# Labels
PROJECT_NAME="Stafli HTTPd Proxy Server (stafli/stafli.proxy.httpd)";
PROJECT_DESCRIPTION="Based on Stafli Supervisor Init (stafli/stafli.init.supervisor)";
PROJECT_KEYWORDS="stafli, httpd, proxy, debian, centos";
PROJECT_URL="https://stafli.org/";
PROJECT_LICENSE="GPLv3";
PROJECT_VENDOR_NAME="Stafli";
PROJECT_VENDOR_EMAIL="info@stafli.org";
PROJECT_VENDOR_WEBSITE="https://www.stafli.org";
PROJECT_AUTHORS_LPALGARVIO_NAME="Luis Pedro Algarvio";
PROJECT_AUTHORS_LPALGARVIO_EMAIL="lp@algarvio.org";
PROJECT_AUTHORS_LPALGARVIO_HOMEPAGE="https://lp.algarvio.org";
PROJECT_AUTHORS_LPALGARVIO_ROLE="Maintainer";
REGISTRY_URL="https://hub.docker.com/r/stafli/stafli.proxy.httpd";
VCS_URL="https://github.com/stafli-org/stafli.proxy.httpd";
VCS_REF="`git rev-parse --short HEAD`";
VCS_BRANCH="master";
BUILD_ARCH="amd64";
BUILD_VERSION="1.0";
BUILD_DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ");
# add variables as needed