Feature/merging all my junk together (#4)
* Merging all my junk together. * Add more junk from other repos. * Fix missing hadolint. * Fixed names * Somehow, I missed out a lot of components * More jiggery pokery * More jiggery pokery * Ignore some hadolint warnings * Maybe fix build? * Split back up php Dockerfile. * dockerfile->file * Flavours environment issues * Fix flavours? * remove onbuilds. * Might be these quotes tripping it up. * Try without caching/buildx/qemu * OK it needs caching/buildx/qemu lol * remove build cache. * Put build caching back * Add octoprint bits * Add pulls. * Fix build order + linter. * rejig multistage builder to make hadolint happy(ier)
This commit is contained in:
parent
49c06822ee
commit
f7873fe671
55 changed files with 4549 additions and 1027 deletions
.github/workflows
.gitignoredoc
mariadb
marshall
node
octoprint
php
.dockerignore.gitignoreCODE_OF_CONDUCT.mdDockerfile.CoreDockerfile.FlavoursLICENSE.mdMakefileREADME.mdREADME.templatedocker-compose.yml
php+apache
php+cli
php+nginx
NginxDefaultNginxSSLlogs-nginx-access.runitlogs-nginx-error.runitlogs-phpfpm-error.runitnginx.runitphp-fpm.runit
php-core
test-webapp/php
redis
wordpress
159
.github/workflows/build.yml
vendored
159
.github/workflows/build.yml
vendored
|
@ -14,26 +14,27 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
dockerfile:
|
||||
- Dockerfile.Core
|
||||
- Dockerfile.Flavours
|
||||
- Dockerfile.Marshall
|
||||
- Dockerfile.Node
|
||||
- marshall/Dockerfile
|
||||
- php/Dockerfile.Core
|
||||
- php/Dockerfile.Flavours
|
||||
- node/Dockerfile
|
||||
- mariadb/Dockerfile
|
||||
- redis/Dockerfile
|
||||
- octoprint/Dockerfile
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: brpaz/hadolint-action@master
|
||||
with:
|
||||
dockerfile: ${{ matrix.dockerfile }}
|
||||
|
||||
build-marshall:
|
||||
marshall-build:
|
||||
name: "Build Marshall"
|
||||
needs: [ lint ]
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: docker/setup-qemu-action@v1
|
||||
name: Setup QEmu
|
||||
- uses: docker/setup-buildx-action@v1
|
||||
name: Setup Docker Buildx
|
||||
- uses: docker/login-action@v1
|
||||
name: Login to Docker Hub
|
||||
with:
|
||||
|
@ -53,17 +54,16 @@ jobs:
|
|||
- uses: docker/build-push-action@v2
|
||||
name: Build & Push
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile.Marshall
|
||||
target: marshall
|
||||
context: marshall
|
||||
platforms: linux/amd64,linux/arm64
|
||||
pull: true
|
||||
push: true
|
||||
tags: |
|
||||
benzine/marshall:latest
|
||||
|
||||
build-php-core:
|
||||
php-build-core:
|
||||
name: "Build PHP Core"
|
||||
needs: [ lint, build-marshall ]
|
||||
needs: [ lint, marshall-build ]
|
||||
runs-on: ubuntu-20.04
|
||||
strategy:
|
||||
fail-fast: false
|
||||
|
@ -101,21 +101,27 @@ jobs:
|
|||
script: return `PHP_PACKAGES=${{ steps.vars.outputs.php_packages }}\nPHP_VERSION=${{ matrix.version }}\nPHP_CORE_VERSION=benzine/php:core-${{ matrix.version }}`
|
||||
- uses: actions/checkout@v1
|
||||
- uses: docker/setup-qemu-action@v1
|
||||
name: Setup QEmu
|
||||
- uses: docker/setup-buildx-action@v1
|
||||
name: Setup Docker Buildx
|
||||
- uses: docker/login-action@v1
|
||||
name: Login to Docker Hub
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
|
||||
- name: Cache Docker layers
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: /tmp/.buildx-cache
|
||||
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-buildx-
|
||||
- uses: docker/build-push-action@v2
|
||||
name: Build & Push
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile.Core
|
||||
context: php
|
||||
file: php/Dockerfile.Core
|
||||
target: php-core
|
||||
platforms: linux/amd64,linux/arm64
|
||||
pull: true
|
||||
push: true
|
||||
tags: |
|
||||
benzine/php:core-${{ matrix.version }}
|
||||
|
@ -123,10 +129,9 @@ jobs:
|
|||
${{ steps.build_args.outputs.result }}
|
||||
cache-from: type=local,src=/tmp/.buildx-cache
|
||||
cache-to: type=local,dest=/tmp/.buildx-cache
|
||||
|
||||
build-php-flavours:
|
||||
php-build-flavours:
|
||||
name: "Build PHP Flavours"
|
||||
needs: [ build-php-core ]
|
||||
needs: [ php-build-core ]
|
||||
runs-on: ubuntu-20.04
|
||||
strategy:
|
||||
fail-fast: false
|
||||
|
@ -135,9 +140,6 @@ jobs:
|
|||
- cli
|
||||
- nginx
|
||||
- apache
|
||||
onbuild:
|
||||
- ''
|
||||
# - '-onbuild'
|
||||
version:
|
||||
#- "7.0"
|
||||
#- "7.1"
|
||||
|
@ -161,12 +163,10 @@ jobs:
|
|||
id: build_args
|
||||
with:
|
||||
result-encoding: string
|
||||
script: return `PHP_PACKAGES=${{ steps.vars.outputs.php_packages }}\nPHP_VERSION=${{ matrix.version }}\nPHP_CORE_VERSION=benzine/php:core-${{ matrix.version }}`
|
||||
script: return `PHP_VERSION=${{ matrix.version }}\nPHP_CORE_VERSION=benzine/php:core-${{ matrix.version }}`
|
||||
- uses: actions/checkout@v1
|
||||
- uses: docker/setup-qemu-action@v1
|
||||
name: Setup QEmu
|
||||
- uses: docker/setup-buildx-action@v1
|
||||
name: Setup Docker Buildx
|
||||
- uses: docker/login-action@v1
|
||||
name: Login to Docker Hub
|
||||
with:
|
||||
|
@ -182,21 +182,21 @@ jobs:
|
|||
- uses: docker/build-push-action@v2
|
||||
name: Build & Push
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile.Flavours
|
||||
context: php
|
||||
file: php/Dockerfile.Flavours
|
||||
target: php-${{ matrix.variant }}
|
||||
platforms: linux/amd64,linux/arm64
|
||||
pull: true
|
||||
push: true
|
||||
tags: |
|
||||
benzine/php:${{ matrix.variant }}-${{ matrix.version }}${{ matrix.onbuild }}
|
||||
benzine/php:${{ matrix.variant }}-${{ matrix.version }}
|
||||
build-args: |
|
||||
${{ steps.build_args.outputs.result }}
|
||||
cache-from: type=local,src=/tmp/.buildx-cache
|
||||
cache-to: type=local,dest=/tmp/.buildx-cache
|
||||
|
||||
vanity-tags:
|
||||
php-vanity-tags:
|
||||
name: Vanity Tags
|
||||
needs: [ build-php-flavours ]
|
||||
needs: [ php-build-flavours ]
|
||||
runs-on: ubuntu-20.04
|
||||
env:
|
||||
latest-stable-version: "7.4"
|
||||
|
@ -223,4 +223,101 @@ jobs:
|
|||
docker tag benzine/php:${{ matrix.variant }}-${{ env.latest-stable-version }} gone/php:${{ matrix.variant }}
|
||||
docker push gone/php:${{ matrix.variant }}
|
||||
|
||||
mariadb-build:
|
||||
name: "MariaDB with Healthchecks"
|
||||
runs-on: ubuntu-20.04
|
||||
needs: [ lint ]
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: docker/setup-qemu-action@v1
|
||||
- uses: docker/setup-buildx-action@v1
|
||||
- uses: docker/login-action@v1
|
||||
name: Login to Docker Hub
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
|
||||
- uses: docker/build-push-action@v2
|
||||
name: Build & Push
|
||||
with:
|
||||
context: mariadb
|
||||
platforms: linux/amd64,linux/arm64
|
||||
pull: true
|
||||
push: true
|
||||
tags: |
|
||||
benzine/mariadb
|
||||
redis-build:
|
||||
name: "Redis with Healthchecks"
|
||||
runs-on: ubuntu-20.04
|
||||
needs: [ lint ]
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: docker/setup-qemu-action@v1
|
||||
- uses: docker/setup-buildx-action@v1
|
||||
- uses: docker/login-action@v1
|
||||
name: Login to Docker Hub
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
|
||||
- uses: docker/build-push-action@v2
|
||||
name: Build & Push
|
||||
with:
|
||||
context: redis
|
||||
platforms: linux/amd64,linux/arm64
|
||||
pull: true
|
||||
push: true
|
||||
tags: |
|
||||
benzine/redis
|
||||
wordpress-build:
|
||||
name: "Bake Wordpress Container"
|
||||
runs-on: ubuntu-20.04
|
||||
needs: [ lint, php-build-flavours ]
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: docker/setup-qemu-action@v1
|
||||
- uses: docker/setup-buildx-action@v1
|
||||
- uses: docker/login-action@v1
|
||||
name: Login to Docker Hub
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
|
||||
- uses: docker/build-push-action@v2
|
||||
name: Build & Push
|
||||
with:
|
||||
context: wordpress
|
||||
platforms: linux/amd64,linux/arm64
|
||||
pull: true
|
||||
push: true
|
||||
tags: |
|
||||
matthewbaggett/wordpress
|
||||
|
||||
octoprint-build:
|
||||
name: "Bake Octoprint"
|
||||
runs-on: ubuntu-20.04
|
||||
needs: [ lint ]
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: docker/setup-qemu-action@v1
|
||||
- uses: docker/setup-buildx-action@v1
|
||||
- uses: docker/login-action@v1
|
||||
name: Login to Docker Hub
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
|
||||
- uses: docker/build-push-action@v2
|
||||
name: Build Octoprint
|
||||
with:
|
||||
context: octoprint
|
||||
target: octoprint
|
||||
platforms: linux/amd64,linux/arm64
|
||||
pull: true
|
||||
push: true
|
||||
tags: matthewbaggett/octoprint:latest
|
||||
- uses: docker/build-push-action@v2
|
||||
name: Build Octoprint MJPG Streamer Variant
|
||||
with:
|
||||
context: octoprint
|
||||
target: octoprint-mjpg-streamer
|
||||
platforms: linux/amd64,linux/arm64
|
||||
pull: true
|
||||
push: true
|
||||
tags: matthewbaggett/octoprint:mjpg-streamer-yu12
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,4 +1 @@
|
|||
.idea
|
||||
marshall/marshall_*
|
||||
Makefile.working
|
||||
qemu-*-static*
|
||||
|
|
1
doc/.gitignore
vendored
1
doc/.gitignore
vendored
|
@ -1 +0,0 @@
|
|||
vendor
|
|
@ -1,17 +0,0 @@
|
|||
{
|
||||
"name": "benzine/docker-tag-tracker",
|
||||
"type": "project",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Matthew Baggett",
|
||||
"email": "matthew@baggett.me"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=7.1",
|
||||
"ext-json": "*",
|
||||
"guzzlehttp/guzzle": "^6.3",
|
||||
"kint-php/kint": "^3.2",
|
||||
"maddhatter/markdown-table": "^1.0"
|
||||
}
|
||||
}
|
834
doc/composer.lock
generated
834
doc/composer.lock
generated
|
@ -1,834 +0,0 @@
|
|||
{
|
||||
"_readme": [
|
||||
"This file locks the dependencies of your project to a known state",
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "cb2d531312610f5c5f6fc8f9176efb32",
|
||||
"packages": [
|
||||
{
|
||||
"name": "guzzlehttp/guzzle",
|
||||
"version": "6.5.5",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/guzzle/guzzle.git",
|
||||
"reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
|
||||
"reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-json": "*",
|
||||
"guzzlehttp/promises": "^1.0",
|
||||
"guzzlehttp/psr7": "^1.6.1",
|
||||
"php": ">=5.5",
|
||||
"symfony/polyfill-intl-idn": "^1.17.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"ext-curl": "*",
|
||||
"phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
|
||||
"psr/log": "^1.1"
|
||||
},
|
||||
"suggest": {
|
||||
"psr/log": "Required for using the Log middleware"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "6.5-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"GuzzleHttp\\": "src/"
|
||||
},
|
||||
"files": [
|
||||
"src/functions_include.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Michael Dowling",
|
||||
"email": "mtdowling@gmail.com",
|
||||
"homepage": "https://github.com/mtdowling"
|
||||
}
|
||||
],
|
||||
"description": "Guzzle is a PHP HTTP client library",
|
||||
"homepage": "http://guzzlephp.org/",
|
||||
"keywords": [
|
||||
"client",
|
||||
"curl",
|
||||
"framework",
|
||||
"http",
|
||||
"http client",
|
||||
"rest",
|
||||
"web service"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/guzzle/guzzle/issues",
|
||||
"source": "https://github.com/guzzle/guzzle/tree/6.5"
|
||||
},
|
||||
"time": "2020-06-16T21:01:06+00:00"
|
||||
},
|
||||
{
|
||||
"name": "guzzlehttp/promises",
|
||||
"version": "1.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/guzzle/promises.git",
|
||||
"reference": "60d379c243457e073cff02bc323a2a86cb355631"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
|
||||
"reference": "60d379c243457e073cff02bc323a2a86cb355631",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.5"
|
||||
},
|
||||
"require-dev": {
|
||||
"symfony/phpunit-bridge": "^4.4 || ^5.1"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.4-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"GuzzleHttp\\Promise\\": "src/"
|
||||
},
|
||||
"files": [
|
||||
"src/functions_include.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Michael Dowling",
|
||||
"email": "mtdowling@gmail.com",
|
||||
"homepage": "https://github.com/mtdowling"
|
||||
}
|
||||
],
|
||||
"description": "Guzzle promises library",
|
||||
"keywords": [
|
||||
"promise"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/guzzle/promises/issues",
|
||||
"source": "https://github.com/guzzle/promises/tree/1.4.0"
|
||||
},
|
||||
"time": "2020-09-30T07:37:28+00:00"
|
||||
},
|
||||
{
|
||||
"name": "guzzlehttp/psr7",
|
||||
"version": "1.7.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/guzzle/psr7.git",
|
||||
"reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
|
||||
"reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.4.0",
|
||||
"psr/http-message": "~1.0",
|
||||
"ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
|
||||
},
|
||||
"provide": {
|
||||
"psr/http-message-implementation": "1.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"ext-zlib": "*",
|
||||
"phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
|
||||
},
|
||||
"suggest": {
|
||||
"laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.7-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"GuzzleHttp\\Psr7\\": "src/"
|
||||
},
|
||||
"files": [
|
||||
"src/functions_include.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Michael Dowling",
|
||||
"email": "mtdowling@gmail.com",
|
||||
"homepage": "https://github.com/mtdowling"
|
||||
},
|
||||
{
|
||||
"name": "Tobias Schultze",
|
||||
"homepage": "https://github.com/Tobion"
|
||||
}
|
||||
],
|
||||
"description": "PSR-7 message implementation that also provides common utility methods",
|
||||
"keywords": [
|
||||
"http",
|
||||
"message",
|
||||
"psr-7",
|
||||
"request",
|
||||
"response",
|
||||
"stream",
|
||||
"uri",
|
||||
"url"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/guzzle/psr7/issues",
|
||||
"source": "https://github.com/guzzle/psr7/tree/1.7.0"
|
||||
},
|
||||
"time": "2020-09-30T07:37:11+00:00"
|
||||
},
|
||||
{
|
||||
"name": "illuminate/contracts",
|
||||
"version": "v5.5.44",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/illuminate/contracts.git",
|
||||
"reference": "b2a62b4a85485fca9cf5fa61a933ad64006ff528"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/illuminate/contracts/zipball/b2a62b4a85485fca9cf5fa61a933ad64006ff528",
|
||||
"reference": "b2a62b4a85485fca9cf5fa61a933ad64006ff528",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.0",
|
||||
"psr/container": "~1.0",
|
||||
"psr/simple-cache": "~1.0"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "5.5-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Illuminate\\Contracts\\": ""
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Taylor Otwell",
|
||||
"email": "taylor@laravel.com"
|
||||
}
|
||||
],
|
||||
"description": "The Illuminate Contracts package.",
|
||||
"homepage": "https://laravel.com",
|
||||
"support": {
|
||||
"issues": "https://github.com/laravel/framework/issues",
|
||||
"source": "https://github.com/laravel/framework"
|
||||
},
|
||||
"time": "2018-03-20T15:34:35+00:00"
|
||||
},
|
||||
{
|
||||
"name": "kint-php/kint",
|
||||
"version": "3.3",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/kint-php/kint.git",
|
||||
"reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
|
||||
"reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.6"
|
||||
},
|
||||
"require-dev": {
|
||||
"friendsofphp/php-cs-fixer": "^2.0",
|
||||
"phpunit/phpunit": "^4.0",
|
||||
"seld/phar-utils": "^1.0",
|
||||
"symfony/finder": "^2.0 || ^3.0 || ^4.0",
|
||||
"vimeo/psalm": "^3.0"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-ctype": "Simple data type tests",
|
||||
"ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
|
||||
"ext-mbstring": "Provides string encoding detection",
|
||||
"kint-php/kint-js": "Provides a simplified dump to console.log()",
|
||||
"kint-php/kint-twig": "Provides d() and s() functions in twig templates",
|
||||
"symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
|
||||
"symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
|
||||
"symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"init.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Kint\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Jonathan Vollebregt",
|
||||
"homepage": "https://github.com/jnvsor"
|
||||
},
|
||||
{
|
||||
"name": "Rokas Šleinius",
|
||||
"homepage": "https://github.com/raveren"
|
||||
},
|
||||
{
|
||||
"name": "Contributors",
|
||||
"homepage": "https://github.com/kint-php/kint/graphs/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Kint - debugging tool for PHP developers",
|
||||
"homepage": "https://kint-php.github.io/kint/",
|
||||
"keywords": [
|
||||
"debug",
|
||||
"kint",
|
||||
"php"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/kint-php/kint/issues",
|
||||
"source": "https://github.com/kint-php/kint/tree/master"
|
||||
},
|
||||
"time": "2019-10-17T18:05:24+00:00"
|
||||
},
|
||||
{
|
||||
"name": "maddhatter/markdown-table",
|
||||
"version": "1.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/maddhatter/markdown-table.git",
|
||||
"reference": "146dc419a073990b0adde6f22d79ff13ebf21bfc"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/maddhatter/markdown-table/zipball/146dc419a073990b0adde6f22d79ff13ebf21bfc",
|
||||
"reference": "146dc419a073990b0adde6f22d79ff13ebf21bfc",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"illuminate/contracts": "^5.0",
|
||||
"php": ">=5.4.0"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"MaddHatter\\MarkdownTable\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Shawn Tunney",
|
||||
"email": "shawn.tunney@gmail.com"
|
||||
}
|
||||
],
|
||||
"description": "Dynamically generate markdown tables",
|
||||
"support": {
|
||||
"issues": "https://github.com/maddhatter/markdown-table/issues",
|
||||
"source": "https://github.com/maddhatter/markdown-table/tree/1.0.0"
|
||||
},
|
||||
"time": "2017-06-02T13:16:54+00:00"
|
||||
},
|
||||
{
|
||||
"name": "psr/container",
|
||||
"version": "1.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/php-fig/container.git",
|
||||
"reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
|
||||
"reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.0"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.0.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Psr\\Container\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "PHP-FIG",
|
||||
"homepage": "http://www.php-fig.org/"
|
||||
}
|
||||
],
|
||||
"description": "Common Container Interface (PHP FIG PSR-11)",
|
||||
"homepage": "https://github.com/php-fig/container",
|
||||
"keywords": [
|
||||
"PSR-11",
|
||||
"container",
|
||||
"container-interface",
|
||||
"container-interop",
|
||||
"psr"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/php-fig/container/issues",
|
||||
"source": "https://github.com/php-fig/container/tree/master"
|
||||
},
|
||||
"time": "2017-02-14T16:28:37+00:00"
|
||||
},
|
||||
{
|
||||
"name": "psr/http-message",
|
||||
"version": "1.0.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/php-fig/http-message.git",
|
||||
"reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
|
||||
"reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.0"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.0.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Psr\\Http\\Message\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "PHP-FIG",
|
||||
"homepage": "http://www.php-fig.org/"
|
||||
}
|
||||
],
|
||||
"description": "Common interface for HTTP messages",
|
||||
"homepage": "https://github.com/php-fig/http-message",
|
||||
"keywords": [
|
||||
"http",
|
||||
"http-message",
|
||||
"psr",
|
||||
"psr-7",
|
||||
"request",
|
||||
"response"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/php-fig/http-message/tree/master"
|
||||
},
|
||||
"time": "2016-08-06T14:39:51+00:00"
|
||||
},
|
||||
{
|
||||
"name": "psr/simple-cache",
|
||||
"version": "1.0.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/php-fig/simple-cache.git",
|
||||
"reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
|
||||
"reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.0"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.0.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Psr\\SimpleCache\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "PHP-FIG",
|
||||
"homepage": "http://www.php-fig.org/"
|
||||
}
|
||||
],
|
||||
"description": "Common interfaces for simple caching",
|
||||
"keywords": [
|
||||
"cache",
|
||||
"caching",
|
||||
"psr",
|
||||
"psr-16",
|
||||
"simple-cache"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/php-fig/simple-cache/tree/master"
|
||||
},
|
||||
"time": "2017-10-23T01:57:42+00:00"
|
||||
},
|
||||
{
|
||||
"name": "ralouphie/getallheaders",
|
||||
"version": "3.0.3",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/ralouphie/getallheaders.git",
|
||||
"reference": "120b605dfeb996808c31b6477290a714d356e822"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
|
||||
"reference": "120b605dfeb996808c31b6477290a714d356e822",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.6"
|
||||
},
|
||||
"require-dev": {
|
||||
"php-coveralls/php-coveralls": "^2.1",
|
||||
"phpunit/phpunit": "^5 || ^6.5"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/getallheaders.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Ralph Khattar",
|
||||
"email": "ralph.khattar@gmail.com"
|
||||
}
|
||||
],
|
||||
"description": "A polyfill for getallheaders.",
|
||||
"support": {
|
||||
"issues": "https://github.com/ralouphie/getallheaders/issues",
|
||||
"source": "https://github.com/ralouphie/getallheaders/tree/develop"
|
||||
},
|
||||
"time": "2019-03-08T08:55:37+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-intl-idn",
|
||||
"version": "v1.22.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/polyfill-intl-idn.git",
|
||||
"reference": "2d63434d922daf7da8dd863e7907e67ee3031483"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483",
|
||||
"reference": "2d63434d922daf7da8dd863e7907e67ee3031483",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1",
|
||||
"symfony/polyfill-intl-normalizer": "^1.10",
|
||||
"symfony/polyfill-php72": "^1.10"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-intl": "For best performance"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-main": "1.22-dev"
|
||||
},
|
||||
"thanks": {
|
||||
"name": "symfony/polyfill",
|
||||
"url": "https://github.com/symfony/polyfill"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Polyfill\\Intl\\Idn\\": ""
|
||||
},
|
||||
"files": [
|
||||
"bootstrap.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Laurent Bassin",
|
||||
"email": "laurent@bassin.info"
|
||||
},
|
||||
{
|
||||
"name": "Trevor Rowbotham",
|
||||
"email": "trevor.rowbotham@pm.me"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"compatibility",
|
||||
"idn",
|
||||
"intl",
|
||||
"polyfill",
|
||||
"portable",
|
||||
"shim"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2021-01-22T09:19:47+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-intl-normalizer",
|
||||
"version": "v1.22.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
|
||||
"reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248",
|
||||
"reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-intl": "For best performance"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-main": "1.22-dev"
|
||||
},
|
||||
"thanks": {
|
||||
"name": "symfony/polyfill",
|
||||
"url": "https://github.com/symfony/polyfill"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Polyfill\\Intl\\Normalizer\\": ""
|
||||
},
|
||||
"files": [
|
||||
"bootstrap.php"
|
||||
],
|
||||
"classmap": [
|
||||
"Resources/stubs"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Nicolas Grekas",
|
||||
"email": "p@tchwork.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony polyfill for intl's Normalizer class and related functions",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"compatibility",
|
||||
"intl",
|
||||
"normalizer",
|
||||
"polyfill",
|
||||
"portable",
|
||||
"shim"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2021-01-22T09:19:47+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-php72",
|
||||
"version": "v1.22.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/polyfill-php72.git",
|
||||
"reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
|
||||
"reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-main": "1.22-dev"
|
||||
},
|
||||
"thanks": {
|
||||
"name": "symfony/polyfill",
|
||||
"url": "https://github.com/symfony/polyfill"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Polyfill\\Php72\\": ""
|
||||
},
|
||||
"files": [
|
||||
"bootstrap.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Nicolas Grekas",
|
||||
"email": "p@tchwork.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"compatibility",
|
||||
"polyfill",
|
||||
"portable",
|
||||
"shim"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/polyfill-php72/tree/v1.22.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2021-01-07T16:49:33+00:00"
|
||||
}
|
||||
],
|
||||
"packages-dev": [],
|
||||
"aliases": [],
|
||||
"minimum-stability": "stable",
|
||||
"stability-flags": [],
|
||||
"prefer-stable": false,
|
||||
"prefer-lowest": false,
|
||||
"platform": {
|
||||
"php": ">=7.1",
|
||||
"ext-json": "*"
|
||||
},
|
||||
"platform-dev": [],
|
||||
"plugin-api-version": "2.0.0"
|
||||
}
|
70
doc/gen
70
doc/gen
|
@ -1,70 +0,0 @@
|
|||
#!/usr/bin/php
|
||||
<?php
|
||||
chdir(__DIR__);
|
||||
require_once __DIR__ . "/vendor/autoload.php";
|
||||
|
||||
use \GuzzleHttp\Client as Guzzle;
|
||||
use \MaddHatter\MarkdownTable\Builder as TableBuilder;
|
||||
|
||||
$client = new Guzzle();
|
||||
$images = [
|
||||
'benzine/php',
|
||||
#'benzine/node',
|
||||
'benzine/marshall',
|
||||
];
|
||||
$results = [];
|
||||
foreach($images as $image) {
|
||||
$results[$image] = [];
|
||||
$url = "https://hub.docker.com/v2/repositories/{$image}/tags/";
|
||||
$allLoaded = false;
|
||||
while ($allLoaded == false) {
|
||||
$data = $client->get($url)->getBody()->getContents();
|
||||
$json = json_decode($data, true);
|
||||
|
||||
$results[$image] = array_merge($results[$image], $json['results']);
|
||||
if ($json['next']) {
|
||||
$url = $json['next'];
|
||||
} else {
|
||||
$allLoaded = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ksort($results);
|
||||
|
||||
$tableBuilder = new TableBuilder();
|
||||
|
||||
$tableBuilder->headers(['Name', 'Architecture', 'Size', 'Last Updated', 'Microbadger']);
|
||||
$tableBuilder->align(['L','L', 'R','R','C']);
|
||||
|
||||
foreach($results as $image => $variants){
|
||||
foreach($variants as $variant) {
|
||||
$fullImageName = $image . ":" . $variant['name'];
|
||||
$megabytes = number_format($variant['full_size'] / 1024 / 1024, 2);
|
||||
$sizeColour = 'green';
|
||||
if($megabytes > 150){
|
||||
$sizeColour = 'orange';
|
||||
}
|
||||
if($megabytes > 180){
|
||||
$sizeColour = 'red';
|
||||
}
|
||||
|
||||
$arches = [];
|
||||
foreach($variant['images'] as $archSpecificImage){
|
||||
$arches[] = $archSpecificImage['architecture'];
|
||||
}
|
||||
$tableBuilder->row([
|
||||
$fullImageName,
|
||||
strtoupper(implode(", ", $arches)),
|
||||
"[](https://hub.docker.com/r/{$image})",
|
||||
date("Y-m-d H:i:s", strtotime($variant['last_updated'])),
|
||||
"[](https://microbadger.com/images/{$fullImageName} \"Get your own image badge on microbadger.com\")",
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
$readme = file_get_contents(__DIR__ ."/../README.template");
|
||||
|
||||
$readme = str_replace("{{TABLE}}", $tableBuilder->render(), $readme);
|
||||
|
||||
file_put_contents(__DIR__ . "/../README.md", $readme);
|
17
mariadb/CODE_OF_CONDUCT.md
Normal file
17
mariadb/CODE_OF_CONDUCT.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
This code of conduct outlines our expectations for participants within the open source community. Anyone who violates this code of conduct may be banned from contributing here.
|
||||
|
||||
# Requirements
|
||||
* __Be friendly and patient.__
|
||||
* __Be welcoming__ _We strive to be a community that welcomes and supports people of all backgrounds and identities._
|
||||
* __Be respectful__ _Not all of us will agree all the time, but disagreement is no excuse for poor behavior and poor manners._
|
||||
|
||||
# Unacceptable Behaviour
|
||||
* Offensive comments related to gender, sexual orientation, disability, mental illness, physical appearance, body size, race, age, regional discrimination, political or religious affiliation.
|
||||
* Threats of violence, both physical and psycological.
|
||||
* Incitement of violence towards any individual, including encouraging a person to commit suicide or to engage in self-harm.
|
||||
* Continued communication after requests to cease.
|
||||
|
||||
# Interactions
|
||||
* Don't just tell somebody they are wrong, or what they have done is wrong. You must always explain what is wrong, and why it is wrong.
|
||||
* Don't reject contributions that are partially complete and then go and commit your own version. Try to work with the author to complete their work.
|
||||
* We encourage everyone to participate and are committed to building a community for all, we seek to treat everyone both as fairly and equally as possible.
|
10
mariadb/Dockerfile
Normal file
10
mariadb/Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
|||
FROM mariadb:10.6
|
||||
# Copy healthcheck file.
|
||||
COPY health.sh /usr/bin/healthcheck
|
||||
# Add healthcheck
|
||||
HEALTHCHECK --interval=30s --timeout=3s \
|
||||
CMD /usr/bin/healthcheck
|
||||
|
||||
# Copy startup script across
|
||||
COPY docker-entrypoint.sh /usr/local/bin/
|
||||
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
|
|
@ -1,7 +1,7 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
|
@ -631,8 +631,8 @@ to attach them to the start of each source file to most effectively
|
|||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
{one line to give the program's name and a brief idea of what it does.}
|
||||
Copyright (C) {year} {name of author}
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
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
|
||||
|
@ -645,14 +645,14 @@ the "copyright" line and a pointer to where the full notice is found.
|
|||
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/>.
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
{project} Copyright (C) {year} {fullname}
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
@ -664,11 +664,11 @@ might be different; for a GUI interface, you would use an "about box".
|
|||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
11
mariadb/Makefile
Normal file
11
mariadb/Makefile
Normal file
|
@ -0,0 +1,11 @@
|
|||
.PHONY: build all
|
||||
|
||||
all: build
|
||||
|
||||
build:
|
||||
docker buildx build \
|
||||
--load \
|
||||
-t benzine/mariadb \
|
||||
-t ghcr.io/benzine-framework/docker-mariadb \
|
||||
.
|
||||
|
2
mariadb/README.md
Normal file
2
mariadb/README.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
# MariaDB
|
||||
A fork of the MariaDB docker image that tracks upstream and implements a default healthcheck
|
414
mariadb/docker-entrypoint.sh
Normal file
414
mariadb/docker-entrypoint.sh
Normal file
|
@ -0,0 +1,414 @@
|
|||
#!/bin/bash
|
||||
set -eo pipefail
|
||||
shopt -s nullglob
|
||||
|
||||
# logging functions
|
||||
mysql_log() {
|
||||
local type="$1"; shift
|
||||
printf '%s [%s] [Entrypoint]: %s\n' "$(date --rfc-3339=seconds)" "$type" "$*"
|
||||
}
|
||||
mysql_note() {
|
||||
mysql_log Note "$@"
|
||||
}
|
||||
mysql_warn() {
|
||||
mysql_log Warn "$@" >&2
|
||||
}
|
||||
mysql_error() {
|
||||
mysql_log ERROR "$@" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
# usage: file_env VAR [DEFAULT]
|
||||
# ie: file_env 'XYZ_DB_PASSWORD' 'example'
|
||||
# (will allow for "$XYZ_DB_PASSWORD_FILE" to fill in the value of
|
||||
# "$XYZ_DB_PASSWORD" from a file, especially for Docker's secrets feature)
|
||||
file_env() {
|
||||
local var="$1"
|
||||
local fileVar="${var}_FILE"
|
||||
local def="${2:-}"
|
||||
if [ "${!var:-}" ] && [ "${!fileVar:-}" ]; then
|
||||
mysql_error "Both $var and $fileVar are set (but are exclusive)"
|
||||
fi
|
||||
local val="$def"
|
||||
if [ "${!var:-}" ]; then
|
||||
val="${!var}"
|
||||
elif [ "${!fileVar:-}" ]; then
|
||||
val="$(< "${!fileVar}")"
|
||||
fi
|
||||
export "$var"="$val"
|
||||
unset "$fileVar"
|
||||
}
|
||||
|
||||
# set MARIADB_xyz from MYSQL_xyz when MARIADB_xyz is unset
|
||||
# and make them the same value (so user scripts can use either)
|
||||
_mariadb_file_env() {
|
||||
local var="$1"; shift
|
||||
local maria="MARIADB_${var#MYSQL_}"
|
||||
file_env "$var" "$@"
|
||||
file_env "$maria" "${!var}"
|
||||
if [ "${!maria:-}" ]; then
|
||||
export "$var"="${!maria}"
|
||||
fi
|
||||
}
|
||||
|
||||
# check to see if this file is being run or sourced from another script
|
||||
_is_sourced() {
|
||||
# https://unix.stackexchange.com/a/215279
|
||||
[ "${#FUNCNAME[@]}" -ge 2 ] \
|
||||
&& [ "${FUNCNAME[0]}" = '_is_sourced' ] \
|
||||
&& [ "${FUNCNAME[1]}" = 'source' ]
|
||||
}
|
||||
|
||||
# usage: docker_process_init_files [file [file [...]]]
|
||||
# ie: docker_process_init_files /always-initdb.d/*
|
||||
# process initializer files, based on file extensions
|
||||
docker_process_init_files() {
|
||||
# mysql here for backwards compatibility "${mysql[@]}"
|
||||
mysql=( docker_process_sql )
|
||||
|
||||
echo
|
||||
local f
|
||||
for f; do
|
||||
case "$f" in
|
||||
*.sh)
|
||||
# https://github.com/docker-library/postgres/issues/450#issuecomment-393167936
|
||||
# https://github.com/docker-library/postgres/pull/452
|
||||
if [ -x "$f" ]; then
|
||||
mysql_note "$0: running $f"
|
||||
"$f"
|
||||
else
|
||||
mysql_note "$0: sourcing $f"
|
||||
. "$f"
|
||||
fi
|
||||
;;
|
||||
*.sql) mysql_note "$0: running $f"; docker_process_sql < "$f"; echo ;;
|
||||
*.sql.gz) mysql_note "$0: running $f"; gunzip -c "$f" | docker_process_sql; echo ;;
|
||||
*.sql.xz) mysql_note "$0: running $f"; xzcat "$f" | docker_process_sql; echo ;;
|
||||
*) mysql_warn "$0: ignoring $f" ;;
|
||||
esac
|
||||
echo
|
||||
done
|
||||
}
|
||||
|
||||
# arguments necessary to run "mysqld --verbose --help" successfully (used for testing configuration validity and for extracting default/configured values)
|
||||
_verboseHelpArgs=(
|
||||
--verbose --help
|
||||
--log-bin-index="$(mktemp -u)" # https://github.com/docker-library/mysql/issues/136
|
||||
--encrypt-tmp-files=0 # https://github.com/docker-library/mariadb/issues/339
|
||||
)
|
||||
|
||||
mysql_check_config() {
|
||||
local toRun=( "$@" "${_verboseHelpArgs[@]}" ) errors
|
||||
if ! errors="$("${toRun[@]}" 2>&1 >/dev/null)"; then
|
||||
mysql_error $'mysqld failed while attempting to check config\n\tcommand was: '"${toRun[*]}"$'\n\t'"$errors"
|
||||
fi
|
||||
}
|
||||
|
||||
# Fetch value from server config
|
||||
# We use mysqld --verbose --help instead of my_print_defaults because the
|
||||
# latter only show values present in config files, and not server defaults
|
||||
mysql_get_config() {
|
||||
local conf="$1"; shift
|
||||
"$@" "${_verboseHelpArgs[@]}" 2>/dev/null \
|
||||
| awk -v conf="$conf" '$1 == conf && /^[^ \t]/ { sub(/^[^ \t]+[ \t]+/, ""); print; exit }'
|
||||
# match "datadir /some/path with/spaces in/it here" but not "--xyz=abc\n datadir (xyz)"
|
||||
}
|
||||
|
||||
# Do a temporary startup of the MariaDB server, for init purposes
|
||||
docker_temp_server_start() {
|
||||
"$@" --skip-networking --socket="${SOCKET}" &
|
||||
mysql_note "Waiting for server startup"
|
||||
# only use the root password if the database has already been initializaed
|
||||
# so that it won't try to fill in a password file when it hasn't been set yet
|
||||
extraArgs=()
|
||||
if [ -z "$DATABASE_ALREADY_EXISTS" ]; then
|
||||
extraArgs+=( '--dont-use-mysql-root-password' )
|
||||
fi
|
||||
local i
|
||||
for i in {30..0}; do
|
||||
if docker_process_sql "${extraArgs[@]}" --database=mysql <<<'SELECT 1' &> /dev/null; then
|
||||
break
|
||||
fi
|
||||
sleep 1
|
||||
done
|
||||
if [ "$i" = 0 ]; then
|
||||
mysql_error "Unable to start server."
|
||||
fi
|
||||
}
|
||||
|
||||
# Stop the server. When using a local socket file mysqladmin will block until
|
||||
# the shutdown is complete.
|
||||
docker_temp_server_stop() {
|
||||
if ! MYSQL_PWD=$MARIADB_ROOT_PASSWORD mysqladmin shutdown -uroot --socket="${SOCKET}"; then
|
||||
mysql_error "Unable to shut down server."
|
||||
fi
|
||||
}
|
||||
|
||||
# Verify that the minimally required password settings are set for new databases.
|
||||
docker_verify_minimum_env() {
|
||||
if [ -z "$MARIADB_ROOT_PASSWORD" -a -z "$MARIADB_ALLOW_EMPTY_ROOT_PASSWORD" -a -z "$MARIADB_RANDOM_ROOT_PASSWORD" ]; then
|
||||
mysql_error $'Database is uninitialized and password option is not specified\n\tYou need to specify one of MARIADB_ROOT_PASSWORD, MARIADB_ALLOW_EMPTY_ROOT_PASSWORD and MARIADB_RANDOM_ROOT_PASSWORD'
|
||||
fi
|
||||
}
|
||||
|
||||
# creates folders for the database
|
||||
# also ensures permission for user mysql of run as root
|
||||
docker_create_db_directories() {
|
||||
local user; user="$(id -u)"
|
||||
|
||||
# TODO other directories that are used by default? like /var/lib/mysql-files
|
||||
# see https://github.com/docker-library/mysql/issues/562
|
||||
mkdir -p "$DATADIR"
|
||||
|
||||
if [ "$user" = "0" ]; then
|
||||
# this will cause less disk access than `chown -R`
|
||||
find "$DATADIR" \! -user mysql -exec chown mysql '{}' +
|
||||
fi
|
||||
}
|
||||
|
||||
# initializes the database directory
|
||||
docker_init_database_dir() {
|
||||
mysql_note "Initializing database files"
|
||||
installArgs=( --datadir="$DATADIR" --rpm --auth-root-authentication-method=normal )
|
||||
if { mysql_install_db --help || :; } | grep -q -- '--skip-test-db'; then
|
||||
# 10.3+
|
||||
installArgs+=( --skip-test-db )
|
||||
fi
|
||||
# "Other options are passed to mysqld." (so we pass all "mysqld" arguments directly here)
|
||||
mysql_install_db "${installArgs[@]}" "${@:2}"
|
||||
mysql_note "Database files initialized"
|
||||
}
|
||||
|
||||
# Loads various settings that are used elsewhere in the script
|
||||
# This should be called after mysql_check_config, but before any other functions
|
||||
docker_setup_env() {
|
||||
# Get config
|
||||
declare -g DATADIR SOCKET
|
||||
DATADIR="$(mysql_get_config 'datadir' "$@")"
|
||||
SOCKET="$(mysql_get_config 'socket' "$@")"
|
||||
|
||||
|
||||
# Initialize values that might be stored in a file
|
||||
_mariadb_file_env 'MYSQL_ROOT_HOST' '%'
|
||||
_mariadb_file_env 'MYSQL_DATABASE'
|
||||
_mariadb_file_env 'MYSQL_USER'
|
||||
_mariadb_file_env 'MYSQL_PASSWORD'
|
||||
_mariadb_file_env 'MYSQL_ROOT_PASSWORD'
|
||||
|
||||
# set MARIADB_ from MYSQL_ when it is unset and then make them the same value
|
||||
: "${MARIADB_ALLOW_EMPTY_ROOT_PASSWORD:=${MYSQL_ALLOW_EMPTY_PASSWORD:-}}"
|
||||
export MYSQL_ALLOW_EMPTY_PASSWORD="$MARIADB_ALLOW_EMPTY_ROOT_PASSWORD" MARIADB_ALLOW_EMPTY_ROOT_PASSWORD
|
||||
: "${MARIADB_RANDOM_ROOT_PASSWORD:=${MYSQL_RANDOM_ROOT_PASSWORD:-}}"
|
||||
export MYSQL_RANDOM_ROOT_PASSWORD="$MARIADB_RANDOM_ROOT_PASSWORD" MARIADB_RANDOM_ROOT_PASSWORD
|
||||
: "${MARIADB_INITDB_SKIP_TZINFO:=${MYSQL_INITDB_SKIP_TZINFO:-}}"
|
||||
export MYSQL_INITDB_SKIP_TZINFO="$MARIADB_INITDB_SKIP_TZINFO" MARIADB_INITDB_SKIP_TZINFO
|
||||
|
||||
declare -g DATABASE_ALREADY_EXISTS
|
||||
if [ -d "$DATADIR/mysql" ]; then
|
||||
DATABASE_ALREADY_EXISTS='true'
|
||||
fi
|
||||
}
|
||||
|
||||
# Execute the client, use via docker_process_sql to handle root password
|
||||
docker_exec_client() {
|
||||
# args sent in can override this db, since they will be later in the command
|
||||
if [ -n "$MYSQL_DATABASE" ]; then
|
||||
set -- --database="$MYSQL_DATABASE" "$@"
|
||||
fi
|
||||
mysql --protocol=socket -uroot -hlocalhost --socket="${SOCKET}" "$@"
|
||||
}
|
||||
|
||||
# Execute sql script, passed via stdin
|
||||
# usage: docker_process_sql [--dont-use-mysql-root-password] [mysql-cli-args]
|
||||
# ie: docker_process_sql --database=mydb <<<'INSERT ...'
|
||||
# ie: docker_process_sql --dont-use-mysql-root-password --database=mydb <my-file.sql
|
||||
docker_process_sql() {
|
||||
passfileArgs=()
|
||||
if [ '--dont-use-mysql-root-password' = "$1" ]; then
|
||||
shift
|
||||
MYSQL_PWD= docker_exec_client "$@"
|
||||
else
|
||||
MYSQL_PWD=$MARIADB_ROOT_PASSWORD docker_exec_client "$@"
|
||||
fi
|
||||
}
|
||||
|
||||
# SQL escape the string $1 to be placed in a string literal.
|
||||
# escape, \ followed by '
|
||||
docker_sql_escape_string_literal() {
|
||||
local escaped=${1//\\/\\\\}
|
||||
echo "${escaped//\'/\\\'}"
|
||||
}
|
||||
|
||||
# Initializes database with timezone info and root password, plus optional extra db/user
|
||||
docker_setup_db() {
|
||||
# Load timezone info into database
|
||||
if [ -z "$MARIADB_INITDB_SKIP_TZINFO" ]; then
|
||||
{
|
||||
# Aria in 10.4+ is slow due to "transactional" (crash safety)
|
||||
# https://jira.mariadb.org/browse/MDEV-23326
|
||||
# https://github.com/docker-library/mariadb/issues/262
|
||||
local tztables=( time_zone time_zone_leap_second time_zone_name time_zone_transition time_zone_transition_type )
|
||||
for table in "${tztables[@]}"; do
|
||||
echo "/*!100400 ALTER TABLE $table TRANSACTIONAL=0 */;"
|
||||
done
|
||||
|
||||
# sed on "Local time zone" is for https://bugs.mysql.com/bug.php?id=20545
|
||||
# Offset quoting is because of MDEV-25556 (10.6)
|
||||
mysql_tzinfo_to_sql /usr/share/zoneinfo \
|
||||
| sed -e 's/Local time zone must be set--see zic manual page/FCTY/' \
|
||||
-e 's/Offset/`Offset`/'
|
||||
|
||||
for table in "${tztables[@]}"; do
|
||||
echo "/*!100400 ALTER TABLE $table TRANSACTIONAL=1 */;"
|
||||
done
|
||||
} | docker_process_sql --dont-use-mysql-root-password --database=mysql
|
||||
# tell docker_process_sql to not use MYSQL_ROOT_PASSWORD since it is not set yet
|
||||
fi
|
||||
# Generate random root password
|
||||
if [ -n "$MARIADB_RANDOM_ROOT_PASSWORD" ]; then
|
||||
MARIADB_ROOT_PASSWORD="$(pwgen --numerals --capitalize --symbols --remove-chars="'\\" -1 32)"
|
||||
export MARIADB_ROOT_PASSWORD MYSQL_ROOT_PASSWORD=$MARIADB_ROOT_PASSWORD
|
||||
mysql_note "GENERATED ROOT PASSWORD: $MARIADB_ROOT_PASSWORD"
|
||||
fi
|
||||
# Sets root password and creates root users for non-localhost hosts
|
||||
local rootCreate=
|
||||
local rootPasswordEscaped
|
||||
rootPasswordEscaped=$( docker_sql_escape_string_literal "${MARIADB_ROOT_PASSWORD}" )
|
||||
|
||||
# default root to listen for connections from anywhere
|
||||
if [ -n "$MARIADB_ROOT_HOST" ] && [ "$MARIADB_ROOT_HOST" != 'localhost' ]; then
|
||||
# no, we don't care if read finds a terminating character in this heredoc
|
||||
# https://unix.stackexchange.com/questions/265149/why-is-set-o-errexit-breaking-this-read-heredoc-expression/265151#265151
|
||||
read -r -d '' rootCreate <<-EOSQL || true
|
||||
CREATE USER 'root'@'${MARIADB_ROOT_HOST}' IDENTIFIED BY '${rootPasswordEscaped}' ;
|
||||
GRANT ALL ON *.* TO 'root'@'${MARIADB_ROOT_HOST}' WITH GRANT OPTION ;
|
||||
EOSQL
|
||||
fi
|
||||
|
||||
# tell docker_process_sql to not use MARIADB_ROOT_PASSWORD since it is just now being set
|
||||
# --binary-mode to save us from the semi-mad users go out of their way to confuse the encoding.
|
||||
docker_process_sql --dont-use-mysql-root-password --database=mysql --binary-mode <<-EOSQL
|
||||
-- What's done in this file shouldn't be replicated
|
||||
-- or products like mysql-fabric won't work
|
||||
SET @@SESSION.SQL_LOG_BIN=0;
|
||||
-- we need the SQL_MODE NO_BACKSLASH_ESCAPES mode to be clear for the password to be set
|
||||
SET @@SESSION.SQL_MODE=REPLACE(@@SESSION.SQL_MODE, 'NO_BACKSLASH_ESCAPES', '');
|
||||
|
||||
DELETE FROM mysql.user WHERE user NOT IN ('mysql.sys', 'mariadb.sys', 'mysqlxsys', 'root') OR host NOT IN ('localhost') ;
|
||||
SET PASSWORD FOR 'root'@'localhost'=PASSWORD('${rootPasswordEscaped}') ;
|
||||
-- 10.1: https://github.com/MariaDB/server/blob/d925aec1c10cebf6c34825a7de50afe4e630aff4/scripts/mysql_secure_installation.sh#L347-L365
|
||||
-- 10.5: https://github.com/MariaDB/server/blob/00c3a28820c67c37ebbca72691f4897b57f2eed5/scripts/mysql_secure_installation.sh#L351-L369
|
||||
DELETE FROM mysql.db WHERE Db='test' OR Db='test\_%' ;
|
||||
|
||||
GRANT ALL ON *.* TO 'root'@'localhost' WITH GRANT OPTION ;
|
||||
FLUSH PRIVILEGES ;
|
||||
${rootCreate}
|
||||
DROP DATABASE IF EXISTS test ;
|
||||
EOSQL
|
||||
|
||||
# Creates a custom database and user if specified
|
||||
if [ -n "$MARIADB_DATABASE" ]; then
|
||||
mysql_note "Creating database ${MARIADB_DATABASE}"
|
||||
docker_process_sql --database=mysql <<<"CREATE DATABASE IF NOT EXISTS \`$MARIADB_DATABASE\` ;"
|
||||
fi
|
||||
|
||||
if [ -n "$MARIADB_USER" ] && [ -n "$MARIADB_PASSWORD" ]; then
|
||||
mysql_note "Creating user ${MARIADB_USER}"
|
||||
# SQL escape the user password, \ followed by '
|
||||
local userPasswordEscaped
|
||||
userPasswordEscaped=$( docker_sql_escape_string_literal "${MARIADB_PASSWORD}" )
|
||||
docker_process_sql --database=mysql --binary-mode <<-EOSQL_USER
|
||||
SET @@SESSION.SQL_MODE=REPLACE(@@SESSION.SQL_MODE, 'NO_BACKSLASH_ESCAPES', '');
|
||||
CREATE USER '$MARIADB_USER'@'%' IDENTIFIED BY '$userPasswordEscaped';
|
||||
EOSQL_USER
|
||||
|
||||
if [ -n "$MARIADB_DATABASE" ]; then
|
||||
mysql_note "Giving user ${MARIADB_USER} access to schema ${MARIADB_DATABASE}"
|
||||
docker_process_sql --database=mysql <<<"GRANT ALL ON \`${MARIADB_DATABASE//_/\\_}\`.* TO '$MARIADB_USER'@'%' ;"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
# check arguments for an option that would cause mysqld to stop
|
||||
# return true if there is one
|
||||
_mysql_want_help() {
|
||||
local arg
|
||||
for arg; do
|
||||
case "$arg" in
|
||||
-'?'|--help|--print-defaults|-V|--version)
|
||||
return 0
|
||||
;;
|
||||
esac
|
||||
done
|
||||
return 1
|
||||
}
|
||||
|
||||
|
||||
docker_setup_timezone() {
|
||||
if [ "$(id -u)" = "0" ]; then
|
||||
# Set timezone
|
||||
if [[ ! -z "${TZ}" ]]; then
|
||||
whoami
|
||||
rm /etc/localtime /etc/timezone;
|
||||
echo "$TZ" > /etc/timezone;
|
||||
ln -s /usr/share/zoneinfo/$TZ /etc/localtime;
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
_main() {
|
||||
# if command starts with an option, prepend mysqld
|
||||
if [ "${1:0:1}" = '-' ]; then
|
||||
set -- mysqld "$@"
|
||||
fi
|
||||
|
||||
|
||||
# skip setup if they aren't running mysqld or want an option that stops mysqld
|
||||
if [ "$1" = 'mysqld' ] && ! _mysql_want_help "$@"; then
|
||||
mysql_note "Entrypoint script for MariaDB Server ${MARIADB_VERSION} started."
|
||||
|
||||
mysql_check_config "$@"
|
||||
# Load various environment variables
|
||||
docker_setup_env "$@"
|
||||
docker_create_db_directories
|
||||
|
||||
docker_setup_timezone
|
||||
|
||||
# If container is started as root user, restart as dedicated mysql user
|
||||
if [ "$(id -u)" = "0" ]; then
|
||||
mysql_note "Switching to dedicated user 'mysql'"
|
||||
exec gosu mysql "$BASH_SOURCE" "$@"
|
||||
fi
|
||||
|
||||
# there's no database, so it needs to be initialized
|
||||
if [ -z "$DATABASE_ALREADY_EXISTS" ]; then
|
||||
docker_verify_minimum_env
|
||||
|
||||
# check dir permissions to reduce likelihood of half-initialized database
|
||||
ls /docker-entrypoint-initdb.d/ > /dev/null
|
||||
|
||||
docker_init_database_dir "$@"
|
||||
|
||||
mysql_note "Starting temporary server"
|
||||
docker_temp_server_start "$@"
|
||||
mysql_note "Temporary server started."
|
||||
|
||||
docker_setup_db
|
||||
docker_process_init_files /docker-entrypoint-initdb.d/*
|
||||
|
||||
mysql_note "Stopping temporary server"
|
||||
docker_temp_server_stop
|
||||
mysql_note "Temporary server stopped"
|
||||
|
||||
echo
|
||||
mysql_note "MariaDB init process done. Ready for start up."
|
||||
echo
|
||||
fi
|
||||
fi
|
||||
exec "$@"
|
||||
}
|
||||
|
||||
# If we are sourced from elsewhere, don't perform any further actions
|
||||
if ! _is_sourced; then
|
||||
_main "$@"
|
||||
fi
|
2
mariadb/health.sh
Executable file
2
mariadb/health.sh
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/usr/bin/env bash
|
||||
mysqladmin ping --silent -hlocalhost -uroot -p$MYSQL_ROOT_PASSWORD
|
17
marshall/CODE_OF_CONDUCT.md
Normal file
17
marshall/CODE_OF_CONDUCT.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
This code of conduct outlines our expectations for participants within the open source community. Anyone who violates this code of conduct may be banned from contributing here.
|
||||
|
||||
# Requirements
|
||||
* __Be friendly and patient.__
|
||||
* __Be welcoming__ _We strive to be a community that welcomes and supports people of all backgrounds and identities._
|
||||
* __Be respectful__ _Not all of us will agree all the time, but disagreement is no excuse for poor behavior and poor manners._
|
||||
|
||||
# Unacceptable Behaviour
|
||||
* Offensive comments related to gender, sexual orientation, disability, mental illness, physical appearance, body size, race, age, regional discrimination, political or religious affiliation.
|
||||
* Threats of violence, both physical and psycological.
|
||||
* Incitement of violence towards any individual, including encouraging a person to commit suicide or to engage in self-harm.
|
||||
* Continued communication after requests to cease.
|
||||
|
||||
# Interactions
|
||||
* Don't just tell somebody they are wrong, or what they have done is wrong. You must always explain what is wrong, and why it is wrong.
|
||||
* Don't reject contributions that are partially complete and then go and commit your own version. Try to work with the author to complete their work.
|
||||
* We encourage everyone to participate and are committed to building a community for all, we seek to treat everyone both as fairly and equally as possible.
|
|
@ -1,4 +1,4 @@
|
|||
FROM ubuntu:bionic AS marshall
|
||||
FROM ubuntu:bionic
|
||||
|
||||
LABEL maintainer="Matthew Baggett <matthew@baggett.me>"
|
||||
|
||||
|
@ -10,15 +10,14 @@ ENV DEBIAN_FRONTEND="teletype" \
|
|||
COLOUR_NONE='\e[39m' \
|
||||
DEFAULT_TZ='Europe/London'
|
||||
|
||||
|
||||
CMD ["runsvdir", "-P", "/etc/service"]
|
||||
|
||||
WORKDIR /app
|
||||
ENV PATH="/app:/app/bin:/app/vendor/bin:${PATH}"
|
||||
|
||||
COPY marshall/installers /installers
|
||||
COPY marshall/etc /etc
|
||||
COPY marshall/usr /usr
|
||||
COPY installers /installers
|
||||
COPY etc /etc
|
||||
COPY usr /usr
|
||||
|
||||
RUN /installers/install && \
|
||||
rm -rf /marshall /installers
|
674
marshall/LICENSE.md
Normal file
674
marshall/LICENSE.md
Normal file
|
@ -0,0 +1,674 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
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 <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
17
node/CODE_OF_CONDUCT.md
Normal file
17
node/CODE_OF_CONDUCT.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
This code of conduct outlines our expectations for participants within the open source community. Anyone who violates this code of conduct may be banned from contributing here.
|
||||
|
||||
# Requirements
|
||||
* __Be friendly and patient.__
|
||||
* __Be welcoming__ _We strive to be a community that welcomes and supports people of all backgrounds and identities._
|
||||
* __Be respectful__ _Not all of us will agree all the time, but disagreement is no excuse for poor behavior and poor manners._
|
||||
|
||||
# Unacceptable Behaviour
|
||||
* Offensive comments related to gender, sexual orientation, disability, mental illness, physical appearance, body size, race, age, regional discrimination, political or religious affiliation.
|
||||
* Threats of violence, both physical and psycological.
|
||||
* Incitement of violence towards any individual, including encouraging a person to commit suicide or to engage in self-harm.
|
||||
* Continued communication after requests to cease.
|
||||
|
||||
# Interactions
|
||||
* Don't just tell somebody they are wrong, or what they have done is wrong. You must always explain what is wrong, and why it is wrong.
|
||||
* Don't reject contributions that are partially complete and then go and commit your own version. Try to work with the author to complete their work.
|
||||
* We encourage everyone to participate and are committed to building a community for all, we seek to treat everyone both as fairly and equally as possible.
|
|
@ -81,12 +81,3 @@ RUN apt-get -qq update && \
|
|||
apt-get autoremove -y && \
|
||||
apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /var/lib/dpkg/status.old /var/cache/debconf/templates.dat /var/log/dpkg.log /var/log/lastlog /var/log/apt/*.log
|
||||
|
||||
FROM nodejs AS nodejs-onbuild
|
||||
|
||||
ONBUILD COPY ./ /app
|
||||
|
||||
FROM nodejs-compiler AS nodejs-compiler-onbuild
|
||||
|
||||
ONBUILD COPY ./ /app
|
||||
|
674
node/LICENSE.md
Normal file
674
node/LICENSE.md
Normal file
|
@ -0,0 +1,674 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
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 <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
24
octoprint/Dockerfile
Normal file
24
octoprint/Dockerfile
Normal file
|
@ -0,0 +1,24 @@
|
|||
FROM octoprint/octoprint AS octoprint
|
||||
RUN apt-get update -q && \
|
||||
apt-get install --no-install-recommends -yq \
|
||||
cpulimit \
|
||||
&& \
|
||||
apt-get autoremove -y && \
|
||||
apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /var/lib/dpkg/status.old /var/cache/debconf/templates.dat /var/log/dpkg.log /var/log/lastlog /var/log/apt/*.log
|
||||
|
||||
FROM matthewbaggett/octoprint AS builder
|
||||
RUN apt-get update -q && \
|
||||
apt-get install --no-install-recommends -yq \
|
||||
unzip \
|
||||
subversion
|
||||
WORKDIR /build
|
||||
# hadolint ignore=DL3003
|
||||
RUN curl -s -L https://github.com/pranjalv123/mjpg-streamer-yu12/archive/refs/heads/master.zip --output mjpeg-streamer-yu12.zip && \
|
||||
unzip -q mjpeg-streamer-yu12.zip && \
|
||||
cd mjpg-streamer-yu12-master/mjpg-streamer && \
|
||||
make
|
||||
|
||||
FROM matthewbaggett/octoprint AS octoprint-mjpg-streamer
|
||||
COPY --from=builder /build/mjpg-streamer-yu12-master/mjpg-streamer/mjpg_streamer /usr/local/bin/mjpg_streamer
|
||||
COPY --from=builder /build/mjpg-streamer-yu12-master/mjpg-streamer/*.so /usr/local/lib/mjpg-streamer/
|
4
php/.gitignore
vendored
Normal file
4
php/.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
../.idea
|
||||
../marshall/marshall_*
|
||||
Makefile.working
|
||||
qemu-*-static*
|
17
php/CODE_OF_CONDUCT.md
Normal file
17
php/CODE_OF_CONDUCT.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
This code of conduct outlines our expectations for participants within the open source community. Anyone who violates this code of conduct may be banned from contributing here.
|
||||
|
||||
# Requirements
|
||||
* __Be friendly and patient.__
|
||||
* __Be welcoming__ _We strive to be a community that welcomes and supports people of all backgrounds and identities._
|
||||
* __Be respectful__ _Not all of us will agree all the time, but disagreement is no excuse for poor behavior and poor manners._
|
||||
|
||||
# Unacceptable Behaviour
|
||||
* Offensive comments related to gender, sexual orientation, disability, mental illness, physical appearance, body size, race, age, regional discrimination, political or religious affiliation.
|
||||
* Threats of violence, both physical and psycological.
|
||||
* Incitement of violence towards any individual, including encouraging a person to commit suicide or to engage in self-harm.
|
||||
* Continued communication after requests to cease.
|
||||
|
||||
# Interactions
|
||||
* Don't just tell somebody they are wrong, or what they have done is wrong. You must always explain what is wrong, and why it is wrong.
|
||||
* Don't reject contributions that are partially complete and then go and commit your own version. Try to work with the author to complete their work.
|
||||
* We encourage everyone to participate and are committed to building a community for all, we seek to treat everyone both as fairly and equally as possible.
|
|
@ -1,5 +1,6 @@
|
|||
# hadolint ignore=DL3007
|
||||
FROM benzine/marshall:latest AS php-core
|
||||
LABEL maintainer="Matthew Baggett <matthew@baggett.me>"
|
||||
ARG PHP_PACKAGES
|
||||
COPY php-core/install-report.sh /usr/bin/install-report
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
|
@ -45,13 +46,3 @@ RUN echo "APT::Acquire::Retries \"5\";" > /etc/apt/apt.conf.d/80-retries && \
|
|||
/usr/bin/mysqlshow \
|
||||
/usr/bin/mysqlslap \
|
||||
/usr/bin/mytop
|
||||
|
||||
FROM php-core AS php-cli
|
||||
|
||||
# Install a funky cool repl.
|
||||
RUN composer global require -q psy/psysh:@stable && \
|
||||
ln -s /root/.composer/vendor/psy/psysh/bin/psysh /usr/local/bin/repl && \
|
||||
/usr/local/bin/repl -v && \
|
||||
composer clear-cache
|
||||
|
||||
COPY php+cli/psysh-config.php /root/.config/psysh/config.php
|
|
@ -1,5 +1,7 @@
|
|||
ARG PHP_CORE_VERSION
|
||||
# hadolint ignore=DL3024
|
||||
FROM ${PHP_CORE_VERSION} AS php-cli
|
||||
LABEL maintainer="Matthew Baggett <matthew@baggett.me>"
|
||||
|
||||
# Install a funky cool repl.
|
||||
RUN composer global require -q psy/psysh:@stable && \
|
||||
|
@ -9,17 +11,9 @@ RUN composer global require -q psy/psysh:@stable && \
|
|||
|
||||
COPY php+cli/psysh-config.php /root/.config/psysh/config.php
|
||||
|
||||
FROM php-cli AS php-cli-onbuild
|
||||
# On build, add anything in with Dockerfile into /app
|
||||
ONBUILD COPY ./ /app
|
||||
|
||||
# If composer.json/composer.lock exist, do a composer install.
|
||||
ONBUILD RUN (composer install; exit 0) && \
|
||||
(composer dumpautoload -o; exit 0) && \
|
||||
/usr/bin/install-report
|
||||
|
||||
ARG PHP_CORE_VERSION
|
||||
FROM ${PHP_CORE_VERSION} AS php-nginx
|
||||
LABEL maintainer="Matthew Baggett <matthew@baggett.me>"
|
||||
ARG PHP_VERSION
|
||||
ARG PHP_MEMORY_LIMIT=128M
|
||||
ARG PHP_DATA_MAX_SIZE=1024M
|
||||
|
@ -123,17 +117,9 @@ EXPOSE 443/tcp
|
|||
HEALTHCHECK --interval=30s --timeout=3s \
|
||||
CMD curl -f http://localhost/ || exit 1
|
||||
|
||||
FROM php-nginx AS php-nginx-onbuild
|
||||
# On build, add anything in with Dockerfile into /app
|
||||
ONBUILD COPY ./ /app
|
||||
|
||||
# If composer.json/composer.lock exist, do a composer install.
|
||||
ONBUILD RUN (composer install; exit 0) && \
|
||||
(composer dumpautoload -o; exit 0) && \
|
||||
/usr/bin/install-report
|
||||
|
||||
ARG PHP_CORE_VERSION
|
||||
FROM ${PHP_CORE_VERSION} AS php-apache
|
||||
LABEL maintainer="Matthew Baggett <matthew@baggett.me>"
|
||||
ARG PHP_VERSION
|
||||
RUN apt-get -qq update && \
|
||||
apt-get -yqq install --no-install-recommends \
|
||||
|
@ -172,12 +158,3 @@ RUN rm -fr /var/www/html && \
|
|||
chmod +x /etc/service/*/run && \
|
||||
rm -Rf /conf && \
|
||||
a2enmod rewrite
|
||||
|
||||
FROM php-apache AS php-apache-onbuild
|
||||
# On build, add anything in with Dockerfile into /app
|
||||
ONBUILD COPY ./ /app
|
||||
|
||||
# If composer.json/composer.lock exist, do a composer install.
|
||||
ONBUILD RUN (composer install; exit 0) && \
|
||||
(composer dumpautoload -o; exit 0) && \
|
||||
/usr/bin/install-report
|
674
php/LICENSE.md
Normal file
674
php/LICENSE.md
Normal file
|
@ -0,0 +1,674 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
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 <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
|
@ -6,14 +6,14 @@ services:
|
|||
build:
|
||||
target: marshall
|
||||
dockerfile: Dockerfile.Marshall
|
||||
context: .
|
||||
context: ..
|
||||
|
||||
php-core-7.3:
|
||||
image: benzine/php:core-7.3
|
||||
build:
|
||||
target: php-core
|
||||
dockerfile: Dockerfile.Core
|
||||
context: .
|
||||
context: ..
|
||||
args:
|
||||
PHP_VERSION: 7.3
|
||||
PHP_PACKAGES: git mariadb-client php7.3-apcu php7.3-bcmath php7.3-bz2 php7.3-cli php7.3-curl php7.3-gd php7.3-imap php7.3-imagick php7.3-intl php7.3-ldap php7.3-mbstring php7.3-memcache php7.3-mysql php7.3-opcache php7.3-pgsql php7.3-phpdbg php7.3-pspell php7.3-redis php7.3-soap php7.3-sqlite php7.3-xdebug php7.3-xml php7.3-zip postgresql-client
|
||||
|
@ -22,7 +22,7 @@ services:
|
|||
build:
|
||||
target: php-core
|
||||
dockerfile: Dockerfile.Core
|
||||
context: .
|
||||
context: ..
|
||||
args:
|
||||
PHP_VERSION: 7.4
|
||||
PHP_PACKAGES: git mariadb-client php7.4-apcu php7.4-bcmath php7.4-bz2 php7.4-cli php7.4-curl php7.4-gd php7.4-imap php7.4-imagick php7.4-intl php7.4-ldap php7.4-mbstring php7.4-memcache php7.4-mysql php7.4-opcache php7.4-pgsql php7.4-phpdbg php7.4-pspell php7.4-redis php7.4-soap php7.4-sqlite php7.4-xdebug php7.4-xml php7.4-zip postgresql-client
|
||||
|
@ -31,7 +31,7 @@ services:
|
|||
build:
|
||||
target: php-core
|
||||
dockerfile: Dockerfile.Core
|
||||
context: .
|
||||
context: ..
|
||||
args:
|
||||
PHP_VERSION: 8.0
|
||||
PHP_PACKAGES: git mariadb-client php8.0-apcu php8.0-bcmath php8.0-bz2 php8.0-cli php8.0-curl php8.0-gd php8.0-imap php8.0-imagick php8.0-intl php8.0-ldap php8.0-mbstring php8.0-memcache php8.0-mysql php8.0-opcache php8.0-pgsql php8.0-phpdbg php8.0-pspell php8.0-redis php8.0-soap php8.0-sqlite php8.0-xdebug php8.0-xml php8.0-zip postgresql-client
|
||||
|
@ -41,7 +41,7 @@ services:
|
|||
build:
|
||||
target: php-cli
|
||||
dockerfile: Dockerfile.Flavours
|
||||
context: .
|
||||
context: ..
|
||||
args:
|
||||
PHP_CORE_VERSION: benzine/php:core-7.3
|
||||
php-cli-7.4:
|
||||
|
@ -49,7 +49,7 @@ services:
|
|||
build:
|
||||
target: php-cli
|
||||
dockerfile: Dockerfile.Flavours
|
||||
context: .
|
||||
context: ..
|
||||
args:
|
||||
PHP_CORE_VERSION: benzine/php:core-7.4
|
||||
php-cli-8.0:
|
||||
|
@ -57,7 +57,7 @@ services:
|
|||
build:
|
||||
target: php-cli
|
||||
dockerfile: Dockerfile.Flavours
|
||||
context: .
|
||||
context: ..
|
||||
args:
|
||||
PHP_CORE_VERSION: benzine/php:core-8.0
|
||||
|
||||
|
@ -66,7 +66,7 @@ services:
|
|||
build:
|
||||
target: php-nginx
|
||||
dockerfile: Dockerfile.Flavours
|
||||
context: .
|
||||
context: ..
|
||||
args:
|
||||
PHP_CORE_VERSION: benzine/php:core-7.3
|
||||
php-nginx-7.4:
|
||||
|
@ -74,7 +74,7 @@ services:
|
|||
build:
|
||||
target: php-nginx
|
||||
dockerfile: Dockerfile.Flavours
|
||||
context: .
|
||||
context: ..
|
||||
args:
|
||||
PHP_CORE_VERSION: benzine/php:core-7.4
|
||||
php-nginx-8.0:
|
||||
|
@ -82,7 +82,7 @@ services:
|
|||
build:
|
||||
target: php-nginx
|
||||
dockerfile: Dockerfile.Flavours
|
||||
context: .
|
||||
context: ..
|
||||
args:
|
||||
PHP_CORE_VERSION: benzine/php:core-8.0
|
||||
|
||||
|
@ -91,7 +91,7 @@ services:
|
|||
build:
|
||||
target: php-apache
|
||||
dockerfile: Dockerfile.Flavours
|
||||
context: .
|
||||
context: ..
|
||||
args:
|
||||
PHP_CORE_VERSION: benzine/php:core-7.3
|
||||
php-apache-7.4:
|
||||
|
@ -99,7 +99,7 @@ services:
|
|||
build:
|
||||
target: php-apache
|
||||
dockerfile: Dockerfile.Flavours
|
||||
context: .
|
||||
context: ..
|
||||
args:
|
||||
PHP_CORE_VERSION: benzine/php:core-7.4
|
||||
php-apache-8.0:
|
||||
|
@ -107,7 +107,7 @@ services:
|
|||
build:
|
||||
target: php-apache
|
||||
dockerfile: Dockerfile.Flavours
|
||||
context: .
|
||||
context: ..
|
||||
args:
|
||||
PHP_CORE_VERSION: benzine/php:core-8.0
|
||||
|
17
redis/CODE_OF_CONDUCT.md
Normal file
17
redis/CODE_OF_CONDUCT.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
This code of conduct outlines our expectations for participants within the open source community. Anyone who violates this code of conduct may be banned from contributing here.
|
||||
|
||||
# Requirements
|
||||
* __Be friendly and patient.__
|
||||
* __Be welcoming__ _We strive to be a community that welcomes and supports people of all backgrounds and identities._
|
||||
* __Be respectful__ _Not all of us will agree all the time, but disagreement is no excuse for poor behavior and poor manners._
|
||||
|
||||
# Unacceptable Behaviour
|
||||
* Offensive comments related to gender, sexual orientation, disability, mental illness, physical appearance, body size, race, age, regional discrimination, political or religious affiliation.
|
||||
* Threats of violence, both physical and psycological.
|
||||
* Incitement of violence towards any individual, including encouraging a person to commit suicide or to engage in self-harm.
|
||||
* Continued communication after requests to cease.
|
||||
|
||||
# Interactions
|
||||
* Don't just tell somebody they are wrong, or what they have done is wrong. You must always explain what is wrong, and why it is wrong.
|
||||
* Don't reject contributions that are partially complete and then go and commit your own version. Try to work with the author to complete their work.
|
||||
* We encourage everyone to participate and are committed to building a community for all, we seek to treat everyone both as fairly and equally as possible.
|
6
redis/Dockerfile
Normal file
6
redis/Dockerfile
Normal file
|
@ -0,0 +1,6 @@
|
|||
# From upstream redis
|
||||
# hadolint ignore=DL3007
|
||||
FROM redis:latest
|
||||
# Add healthcheck
|
||||
HEALTHCHECK --interval=30s --timeout=3s \
|
||||
CMD redis-cli PING
|
674
redis/LICENSE.md
Normal file
674
redis/LICENSE.md
Normal file
|
@ -0,0 +1,674 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
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 <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
19
redis/Makefile
Normal file
19
redis/Makefile
Normal file
|
@ -0,0 +1,19 @@
|
|||
.PHONY: prepare build all
|
||||
|
||||
all: build
|
||||
|
||||
prepare:
|
||||
docker run --rm --privileged docker/binfmt:820fdd95a9972a5308930a2bdfb8573dd4447ad3
|
||||
-docker buildx rm benzine-redis-builder
|
||||
docker buildx create --name benzine-redis-builder
|
||||
docker buildx use benzine-redis-builder
|
||||
docker buildx inspect --bootstrap
|
||||
|
||||
build: prepare
|
||||
docker buildx build \
|
||||
--push \
|
||||
--platform linux/amd64,linux/arm64 \
|
||||
-t benzine/redis \
|
||||
-t ghcr.io/benzine-framework/docker-mariadb \
|
||||
.
|
||||
|
5
redis/README.md
Normal file
5
redis/README.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
# Redis
|
||||
|
||||
[](https://travis-ci.org/benzine-framework/docker-redis)
|
||||
|
||||
A fork of the redis docker image that tracks upstream and implements a default healthcheck
|
409
redis/build.yml
Normal file
409
redis/build.yml
Normal file
|
@ -0,0 +1,409 @@
|
|||
version: '2.3'
|
||||
services:
|
||||
redis-latest: { build: { context: ., dockerfile: generated/Dockerfile.latest }, image: 'benzine/redis:latest' }
|
||||
redis-buster: { build: { context: ., dockerfile: generated/Dockerfile.buster }, image: 'benzine/redis:buster' }
|
||||
redis-6.0.8-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0.8-buster }, image: 'benzine/redis:6.0.8-buster' }
|
||||
redis-6.0.8: { build: { context: ., dockerfile: generated/Dockerfile.6.0.8 }, image: 'benzine/redis:6.0.8' }
|
||||
redis-6.0-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0-buster }, image: 'benzine/redis:6.0-buster' }
|
||||
redis-6.0: { build: { context: ., dockerfile: generated/Dockerfile.6.0 }, image: 'benzine/redis:6.0' }
|
||||
redis-6-buster: { build: { context: ., dockerfile: generated/Dockerfile.6-buster }, image: 'benzine/redis:6-buster' }
|
||||
redis-6: { build: { context: ., dockerfile: generated/Dockerfile.6 }, image: 'benzine/redis:6' }
|
||||
redis-5.0.9-buster: { build: { context: ., dockerfile: generated/Dockerfile.5.0.9-buster }, image: 'benzine/redis:5.0.9-buster' }
|
||||
redis-5.0.9-32bit-buster: { build: { context: ., dockerfile: generated/Dockerfile.5.0.9-32bit-buster }, image: 'benzine/redis:5.0.9-32bit-buster' }
|
||||
redis-5.0.9-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5.0.9-32bit }, image: 'benzine/redis:5.0.9-32bit' }
|
||||
redis-5.0.9: { build: { context: ., dockerfile: generated/Dockerfile.5.0.9 }, image: 'benzine/redis:5.0.9' }
|
||||
redis-5.0-buster: { build: { context: ., dockerfile: generated/Dockerfile.5.0-buster }, image: 'benzine/redis:5.0-buster' }
|
||||
redis-5.0-32bit-buster: { build: { context: ., dockerfile: generated/Dockerfile.5.0-32bit-buster }, image: 'benzine/redis:5.0-32bit-buster' }
|
||||
redis-5.0-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5.0-32bit }, image: 'benzine/redis:5.0-32bit' }
|
||||
redis-5.0: { build: { context: ., dockerfile: generated/Dockerfile.5.0 }, image: 'benzine/redis:5.0' }
|
||||
redis-5-buster: { build: { context: ., dockerfile: generated/Dockerfile.5-buster }, image: 'benzine/redis:5-buster' }
|
||||
redis-5-32bit-buster: { build: { context: ., dockerfile: generated/Dockerfile.5-32bit-buster }, image: 'benzine/redis:5-32bit-buster' }
|
||||
redis-5-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5-32bit }, image: 'benzine/redis:5-32bit' }
|
||||
redis-5: { build: { context: ., dockerfile: generated/Dockerfile.5 }, image: 'benzine/redis:5' }
|
||||
redis-alpine3.12: { build: { context: ., dockerfile: generated/Dockerfile.alpine3.12 }, image: 'benzine/redis:alpine3.12' }
|
||||
redis-alpine: { build: { context: ., dockerfile: generated/Dockerfile.alpine }, image: 'benzine/redis:alpine' }
|
||||
redis-6.0.8-alpine3.12: { build: { context: ., dockerfile: generated/Dockerfile.6.0.8-alpine3.12 }, image: 'benzine/redis:6.0.8-alpine3.12' }
|
||||
redis-6.0.8-alpine: { build: { context: ., dockerfile: generated/Dockerfile.6.0.8-alpine }, image: 'benzine/redis:6.0.8-alpine' }
|
||||
redis-6.0-alpine3.12: { build: { context: ., dockerfile: generated/Dockerfile.6.0-alpine3.12 }, image: 'benzine/redis:6.0-alpine3.12' }
|
||||
redis-6.0-alpine: { build: { context: ., dockerfile: generated/Dockerfile.6.0-alpine }, image: 'benzine/redis:6.0-alpine' }
|
||||
redis-6-alpine3.12: { build: { context: ., dockerfile: generated/Dockerfile.6-alpine3.12 }, image: 'benzine/redis:6-alpine3.12' }
|
||||
redis-6-alpine: { build: { context: ., dockerfile: generated/Dockerfile.6-alpine }, image: 'benzine/redis:6-alpine' }
|
||||
redis-6.0.7-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0.7-buster }, image: 'benzine/redis:6.0.7-buster' }
|
||||
redis-6.0.7: { build: { context: ., dockerfile: generated/Dockerfile.6.0.7 }, image: 'benzine/redis:6.0.7' }
|
||||
redis-6.0.7-alpine3.12: { build: { context: ., dockerfile: generated/Dockerfile.6.0.7-alpine3.12 }, image: 'benzine/redis:6.0.7-alpine3.12' }
|
||||
redis-6.0.7-alpine: { build: { context: ., dockerfile: generated/Dockerfile.6.0.7-alpine }, image: 'benzine/redis:6.0.7-alpine' }
|
||||
redis-6.0.6-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0.6-buster }, image: 'benzine/redis:6.0.6-buster' }
|
||||
redis-6.0.6: { build: { context: ., dockerfile: generated/Dockerfile.6.0.6 }, image: 'benzine/redis:6.0.6' }
|
||||
redis-6.0.6-alpine3.12: { build: { context: ., dockerfile: generated/Dockerfile.6.0.6-alpine3.12 }, image: 'benzine/redis:6.0.6-alpine3.12' }
|
||||
redis-6.0.6-alpine: { build: { context: ., dockerfile: generated/Dockerfile.6.0.6-alpine }, image: 'benzine/redis:6.0.6-alpine' }
|
||||
redis-5.0.9-alpine3.12: { build: { context: ., dockerfile: generated/Dockerfile.5.0.9-alpine3.12 }, image: 'benzine/redis:5.0.9-alpine3.12' }
|
||||
redis-5.0.9-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5.0.9-alpine }, image: 'benzine/redis:5.0.9-alpine' }
|
||||
redis-5.0-alpine3.12: { build: { context: ., dockerfile: generated/Dockerfile.5.0-alpine3.12 }, image: 'benzine/redis:5.0-alpine3.12' }
|
||||
redis-5.0-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5.0-alpine }, image: 'benzine/redis:5.0-alpine' }
|
||||
redis-5-alpine3.12: { build: { context: ., dockerfile: generated/Dockerfile.5-alpine3.12 }, image: 'benzine/redis:5-alpine3.12' }
|
||||
redis-5-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5-alpine }, image: 'benzine/redis:5-alpine' }
|
||||
redis-6.0.5-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0.5-buster }, image: 'benzine/redis:6.0.5-buster' }
|
||||
redis-6.0.5-alpine3.12: { build: { context: ., dockerfile: generated/Dockerfile.6.0.5-alpine3.12 }, image: 'benzine/redis:6.0.5-alpine3.12' }
|
||||
redis-6.0.5-alpine: { build: { context: ., dockerfile: generated/Dockerfile.6.0.5-alpine }, image: 'benzine/redis:6.0.5-alpine' }
|
||||
redis-6.0.5: { build: { context: ., dockerfile: generated/Dockerfile.6.0.5 }, image: 'benzine/redis:6.0.5' }
|
||||
redis-6.0.4-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0.4-buster }, image: 'benzine/redis:6.0.4-buster' }
|
||||
redis-6.0.4: { build: { context: ., dockerfile: generated/Dockerfile.6.0.4 }, image: 'benzine/redis:6.0.4' }
|
||||
redis-6.0.4-alpine3.12: { build: { context: ., dockerfile: generated/Dockerfile.6.0.4-alpine3.12 }, image: 'benzine/redis:6.0.4-alpine3.12' }
|
||||
redis-6.0.4-alpine: { build: { context: ., dockerfile: generated/Dockerfile.6.0.4-alpine }, image: 'benzine/redis:6.0.4-alpine' }
|
||||
redis-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.alpine3.11 }, image: 'benzine/redis:alpine3.11' }
|
||||
redis-6.0.4-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.6.0.4-alpine3.11 }, image: 'benzine/redis:6.0.4-alpine3.11' }
|
||||
redis-6.0-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.6.0-alpine3.11 }, image: 'benzine/redis:6.0-alpine3.11' }
|
||||
redis-6-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.6-alpine3.11 }, image: 'benzine/redis:6-alpine3.11' }
|
||||
redis-6.0.3-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0.3-buster }, image: 'benzine/redis:6.0.3-buster' }
|
||||
redis-6.0.3-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.6.0.3-alpine3.11 }, image: 'benzine/redis:6.0.3-alpine3.11' }
|
||||
redis-6.0.3-alpine: { build: { context: ., dockerfile: generated/Dockerfile.6.0.3-alpine }, image: 'benzine/redis:6.0.3-alpine' }
|
||||
redis-6.0.3: { build: { context: ., dockerfile: generated/Dockerfile.6.0.3 }, image: 'benzine/redis:6.0.3' }
|
||||
redis-6.0.2-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0.2-buster }, image: 'benzine/redis:6.0.2-buster' }
|
||||
redis-6.0.2-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.6.0.2-alpine3.11 }, image: 'benzine/redis:6.0.2-alpine3.11' }
|
||||
redis-6.0.2-alpine: { build: { context: ., dockerfile: generated/Dockerfile.6.0.2-alpine }, image: 'benzine/redis:6.0.2-alpine' }
|
||||
redis-6.0.2: { build: { context: ., dockerfile: generated/Dockerfile.6.0.2 }, image: 'benzine/redis:6.0.2' }
|
||||
redis-6.0.1-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0.1-buster }, image: 'benzine/redis:6.0.1-buster' }
|
||||
redis-6.0.1: { build: { context: ., dockerfile: generated/Dockerfile.6.0.1 }, image: 'benzine/redis:6.0.1' }
|
||||
redis-6.0.1-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.6.0.1-alpine3.11 }, image: 'benzine/redis:6.0.1-alpine3.11' }
|
||||
redis-6.0.1-alpine: { build: { context: ., dockerfile: generated/Dockerfile.6.0.1-alpine }, image: 'benzine/redis:6.0.1-alpine' }
|
||||
redis-6.0.0-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0.0-buster }, image: 'benzine/redis:6.0.0-buster' }
|
||||
redis-6.0.0-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.6.0.0-alpine3.11 }, image: 'benzine/redis:6.0.0-alpine3.11' }
|
||||
redis-6.0.0-alpine: { build: { context: ., dockerfile: generated/Dockerfile.6.0.0-alpine }, image: 'benzine/redis:6.0.0-alpine' }
|
||||
redis-6.0.0: { build: { context: ., dockerfile: generated/Dockerfile.6.0.0 }, image: 'benzine/redis:6.0.0' }
|
||||
redis-rc-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.rc-alpine3.11 }, image: 'benzine/redis:rc-alpine3.11' }
|
||||
redis-rc-alpine: { build: { context: ., dockerfile: generated/Dockerfile.rc-alpine }, image: 'benzine/redis:rc-alpine' }
|
||||
redis-6.0-rc4-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc4-alpine3.11 }, image: 'benzine/redis:6.0-rc4-alpine3.11' }
|
||||
redis-6.0-rc4-alpine: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc4-alpine }, image: 'benzine/redis:6.0-rc4-alpine' }
|
||||
redis-6.0-rc-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc-alpine3.11 }, image: 'benzine/redis:6.0-rc-alpine3.11' }
|
||||
redis-6.0-rc-alpine: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc-alpine }, image: 'benzine/redis:6.0-rc-alpine' }
|
||||
redis-5.0.9-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.5.0.9-alpine3.11 }, image: 'benzine/redis:5.0.9-alpine3.11' }
|
||||
redis-5.0-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.5.0-alpine3.11 }, image: 'benzine/redis:5.0-alpine3.11' }
|
||||
redis-5-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.5-alpine3.11 }, image: 'benzine/redis:5-alpine3.11' }
|
||||
redis-4.0.14-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.4.0.14-alpine3.11 }, image: 'benzine/redis:4.0.14-alpine3.11' }
|
||||
redis-4.0.14-alpine: { build: { context: ., dockerfile: generated/Dockerfile.4.0.14-alpine }, image: 'benzine/redis:4.0.14-alpine' }
|
||||
redis-4.0-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.4.0-alpine3.11 }, image: 'benzine/redis:4.0-alpine3.11' }
|
||||
redis-4.0-alpine: { build: { context: ., dockerfile: generated/Dockerfile.4.0-alpine }, image: 'benzine/redis:4.0-alpine' }
|
||||
redis-4-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.4-alpine3.11 }, image: 'benzine/redis:4-alpine3.11' }
|
||||
redis-4-alpine: { build: { context: ., dockerfile: generated/Dockerfile.4-alpine }, image: 'benzine/redis:4-alpine' }
|
||||
redis-rc-buster: { build: { context: ., dockerfile: generated/Dockerfile.rc-buster }, image: 'benzine/redis:rc-buster' }
|
||||
redis-rc: { build: { context: ., dockerfile: generated/Dockerfile.rc }, image: 'benzine/redis:rc' }
|
||||
redis-6.0-rc4-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc4-buster }, image: 'benzine/redis:6.0-rc4-buster' }
|
||||
redis-6.0-rc4: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc4 }, image: 'benzine/redis:6.0-rc4' }
|
||||
redis-6.0-rc-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc-buster }, image: 'benzine/redis:6.0-rc-buster' }
|
||||
redis-6.0-rc: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc }, image: 'benzine/redis:6.0-rc' }
|
||||
redis-4.0.14-buster: { build: { context: ., dockerfile: generated/Dockerfile.4.0.14-buster }, image: 'benzine/redis:4.0.14-buster' }
|
||||
redis-4.0.14-32bit-buster: { build: { context: ., dockerfile: generated/Dockerfile.4.0.14-32bit-buster }, image: 'benzine/redis:4.0.14-32bit-buster' }
|
||||
redis-4.0.14-32bit: { build: { context: ., dockerfile: generated/Dockerfile.4.0.14-32bit }, image: 'benzine/redis:4.0.14-32bit' }
|
||||
redis-4.0.14: { build: { context: ., dockerfile: generated/Dockerfile.4.0.14 }, image: 'benzine/redis:4.0.14' }
|
||||
redis-4.0-buster: { build: { context: ., dockerfile: generated/Dockerfile.4.0-buster }, image: 'benzine/redis:4.0-buster' }
|
||||
redis-4.0-32bit-buster: { build: { context: ., dockerfile: generated/Dockerfile.4.0-32bit-buster }, image: 'benzine/redis:4.0-32bit-buster' }
|
||||
redis-4.0-32bit: { build: { context: ., dockerfile: generated/Dockerfile.4.0-32bit }, image: 'benzine/redis:4.0-32bit' }
|
||||
redis-4.0: { build: { context: ., dockerfile: generated/Dockerfile.4.0 }, image: 'benzine/redis:4.0' }
|
||||
redis-4-buster: { build: { context: ., dockerfile: generated/Dockerfile.4-buster }, image: 'benzine/redis:4-buster' }
|
||||
redis-4-32bit-buster: { build: { context: ., dockerfile: generated/Dockerfile.4-32bit-buster }, image: 'benzine/redis:4-32bit-buster' }
|
||||
redis-4-32bit: { build: { context: ., dockerfile: generated/Dockerfile.4-32bit }, image: 'benzine/redis:4-32bit' }
|
||||
redis-4: { build: { context: ., dockerfile: generated/Dockerfile.4 }, image: 'benzine/redis:4' }
|
||||
redis-32bit-buster: { build: { context: ., dockerfile: generated/Dockerfile.32bit-buster }, image: 'benzine/redis:32bit-buster' }
|
||||
redis-32bit: { build: { context: ., dockerfile: generated/Dockerfile.32bit }, image: 'benzine/redis:32bit' }
|
||||
redis-6.0-rc3-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc3-buster }, image: 'benzine/redis:6.0-rc3-buster' }
|
||||
redis-6.0-rc3: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc3 }, image: 'benzine/redis:6.0-rc3' }
|
||||
redis-5.0.8-buster: { build: { context: ., dockerfile: generated/Dockerfile.5.0.8-buster }, image: 'benzine/redis:5.0.8-buster' }
|
||||
redis-5.0.8: { build: { context: ., dockerfile: generated/Dockerfile.5.0.8 }, image: 'benzine/redis:5.0.8' }
|
||||
redis-5.0.8-32bit-buster: { build: { context: ., dockerfile: generated/Dockerfile.5.0.8-32bit-buster }, image: 'benzine/redis:5.0.8-32bit-buster' }
|
||||
redis-5.0.8-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5.0.8-32bit }, image: 'benzine/redis:5.0.8-32bit' }
|
||||
redis-6.0-rc3-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc3-alpine3.11 }, image: 'benzine/redis:6.0-rc3-alpine3.11' }
|
||||
redis-6.0-rc3-alpine: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc3-alpine }, image: 'benzine/redis:6.0-rc3-alpine' }
|
||||
redis-6.0-rc2-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc2-buster }, image: 'benzine/redis:6.0-rc2-buster' }
|
||||
redis-6.0-rc2: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc2 }, image: 'benzine/redis:6.0-rc2' }
|
||||
redis-6.0-rc2-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc2-alpine3.11 }, image: 'benzine/redis:6.0-rc2-alpine3.11' }
|
||||
redis-6.0-rc2-alpine: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc2-alpine }, image: 'benzine/redis:6.0-rc2-alpine' }
|
||||
redis-5.0.8-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.5.0.8-alpine3.11 }, image: 'benzine/redis:5.0.8-alpine3.11' }
|
||||
redis-5.0.8-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5.0.8-alpine }, image: 'benzine/redis:5.0.8-alpine' }
|
||||
redis-6.0-rc1-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc1-buster }, image: 'benzine/redis:6.0-rc1-buster' }
|
||||
redis-6.0-rc1: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc1 }, image: 'benzine/redis:6.0-rc1' }
|
||||
redis-5.0.7-buster: { build: { context: ., dockerfile: generated/Dockerfile.5.0.7-buster }, image: 'benzine/redis:5.0.7-buster' }
|
||||
redis-5.0.7-32bit-buster: { build: { context: ., dockerfile: generated/Dockerfile.5.0.7-32bit-buster }, image: 'benzine/redis:5.0.7-32bit-buster' }
|
||||
redis-5.0.7-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5.0.7-32bit }, image: 'benzine/redis:5.0.7-32bit' }
|
||||
redis-5.0.7: { build: { context: ., dockerfile: generated/Dockerfile.5.0.7 }, image: 'benzine/redis:5.0.7' }
|
||||
redis-6.0-rc1-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc1-alpine3.11 }, image: 'benzine/redis:6.0-rc1-alpine3.11' }
|
||||
redis-6.0-rc1-alpine: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc1-alpine }, image: 'benzine/redis:6.0-rc1-alpine' }
|
||||
redis-5.0.7-alpine3.11: { build: { context: ., dockerfile: generated/Dockerfile.5.0.7-alpine3.11 }, image: 'benzine/redis:5.0.7-alpine3.11' }
|
||||
redis-5.0.7-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5.0.7-alpine }, image: 'benzine/redis:5.0.7-alpine' }
|
||||
redis-rc-32bit-buster: { build: { context: ., dockerfile: generated/Dockerfile.rc-32bit-buster }, image: 'benzine/redis:rc-32bit-buster' }
|
||||
redis-rc-32bit: { build: { context: ., dockerfile: generated/Dockerfile.rc-32bit }, image: 'benzine/redis:rc-32bit' }
|
||||
redis-6.0-rc1-32bit-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc1-32bit-buster }, image: 'benzine/redis:6.0-rc1-32bit-buster' }
|
||||
redis-6.0-rc1-32bit: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc1-32bit }, image: 'benzine/redis:6.0-rc1-32bit' }
|
||||
redis-6.0-rc-32bit-buster: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc-32bit-buster }, image: 'benzine/redis:6.0-rc-32bit-buster' }
|
||||
redis-6.0-rc-32bit: { build: { context: ., dockerfile: generated/Dockerfile.6.0-rc-32bit }, image: 'benzine/redis:6.0-rc-32bit' }
|
||||
redis-alpine3.10: { build: { context: ., dockerfile: generated/Dockerfile.alpine3.10 }, image: 'benzine/redis:alpine3.10' }
|
||||
redis-5.0.7-alpine3.10: { build: { context: ., dockerfile: generated/Dockerfile.5.0.7-alpine3.10 }, image: 'benzine/redis:5.0.7-alpine3.10' }
|
||||
redis-5.0-alpine3.10: { build: { context: ., dockerfile: generated/Dockerfile.5.0-alpine3.10 }, image: 'benzine/redis:5.0-alpine3.10' }
|
||||
redis-5-alpine3.10: { build: { context: ., dockerfile: generated/Dockerfile.5-alpine3.10 }, image: 'benzine/redis:5-alpine3.10' }
|
||||
redis-5.0.6-alpine3.10: { build: { context: ., dockerfile: generated/Dockerfile.5.0.6-alpine3.10 }, image: 'benzine/redis:5.0.6-alpine3.10' }
|
||||
redis-5.0.6-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5.0.6-alpine }, image: 'benzine/redis:5.0.6-alpine' }
|
||||
redis-4.0.14-alpine3.10: { build: { context: ., dockerfile: generated/Dockerfile.4.0.14-alpine3.10 }, image: 'benzine/redis:4.0.14-alpine3.10' }
|
||||
redis-4.0-alpine3.10: { build: { context: ., dockerfile: generated/Dockerfile.4.0-alpine3.10 }, image: 'benzine/redis:4.0-alpine3.10' }
|
||||
redis-4-alpine3.10: { build: { context: ., dockerfile: generated/Dockerfile.4-alpine3.10 }, image: 'benzine/redis:4-alpine3.10' }
|
||||
redis-5.0.6-buster: { build: { context: ., dockerfile: generated/Dockerfile.5.0.6-buster }, image: 'benzine/redis:5.0.6-buster' }
|
||||
redis-5.0.6: { build: { context: ., dockerfile: generated/Dockerfile.5.0.6 }, image: 'benzine/redis:5.0.6' }
|
||||
redis-5.0.6-32bit-buster: { build: { context: ., dockerfile: generated/Dockerfile.5.0.6-32bit-buster }, image: 'benzine/redis:5.0.6-32bit-buster' }
|
||||
redis-5.0.6-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5.0.6-32bit }, image: 'benzine/redis:5.0.6-32bit' }
|
||||
redis-5.0.5-buster: { build: { context: ., dockerfile: generated/Dockerfile.5.0.5-buster }, image: 'benzine/redis:5.0.5-buster' }
|
||||
redis-5.0.5-32bit-buster: { build: { context: ., dockerfile: generated/Dockerfile.5.0.5-32bit-buster }, image: 'benzine/redis:5.0.5-32bit-buster' }
|
||||
redis-5.0.5-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5.0.5-32bit }, image: 'benzine/redis:5.0.5-32bit' }
|
||||
redis-5.0.5: { build: { context: ., dockerfile: generated/Dockerfile.5.0.5 }, image: 'benzine/redis:5.0.5' }
|
||||
redis-5.0.5-alpine3.10: { build: { context: ., dockerfile: generated/Dockerfile.5.0.5-alpine3.10 }, image: 'benzine/redis:5.0.5-alpine3.10' }
|
||||
redis-5.0.5-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5.0.5-alpine }, image: 'benzine/redis:5.0.5-alpine' }
|
||||
redis-stretch: { build: { context: ., dockerfile: generated/Dockerfile.stretch }, image: 'benzine/redis:stretch' }
|
||||
redis-5.0.5-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0.5-stretch }, image: 'benzine/redis:5.0.5-stretch' }
|
||||
redis-5.0-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0-stretch }, image: 'benzine/redis:5.0-stretch' }
|
||||
redis-5-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5-stretch }, image: 'benzine/redis:5-stretch' }
|
||||
redis-4.0.14-stretch: { build: { context: ., dockerfile: generated/Dockerfile.4.0.14-stretch }, image: 'benzine/redis:4.0.14-stretch' }
|
||||
redis-4.0-stretch: { build: { context: ., dockerfile: generated/Dockerfile.4.0-stretch }, image: 'benzine/redis:4.0-stretch' }
|
||||
redis-4-stretch: { build: { context: ., dockerfile: generated/Dockerfile.4-stretch }, image: 'benzine/redis:4-stretch' }
|
||||
redis-5.0.5-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0.5-32bit-stretch }, image: 'benzine/redis:5.0.5-32bit-stretch' }
|
||||
redis-5.0-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0-32bit-stretch }, image: 'benzine/redis:5.0-32bit-stretch' }
|
||||
redis-5-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5-32bit-stretch }, image: 'benzine/redis:5-32bit-stretch' }
|
||||
redis-4.0.14-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.4.0.14-32bit-stretch }, image: 'benzine/redis:4.0.14-32bit-stretch' }
|
||||
redis-4.0-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.4.0-32bit-stretch }, image: 'benzine/redis:4.0-32bit-stretch' }
|
||||
redis-4-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.4-32bit-stretch }, image: 'benzine/redis:4-32bit-stretch' }
|
||||
redis-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.32bit-stretch }, image: 'benzine/redis:32bit-stretch' }
|
||||
redis-alpine3.9: { build: { context: ., dockerfile: generated/Dockerfile.alpine3.9 }, image: 'benzine/redis:alpine3.9' }
|
||||
redis-5.0.5-alpine3.9: { build: { context: ., dockerfile: generated/Dockerfile.5.0.5-alpine3.9 }, image: 'benzine/redis:5.0.5-alpine3.9' }
|
||||
redis-5.0-alpine3.9: { build: { context: ., dockerfile: generated/Dockerfile.5.0-alpine3.9 }, image: 'benzine/redis:5.0-alpine3.9' }
|
||||
redis-5-alpine3.9: { build: { context: ., dockerfile: generated/Dockerfile.5-alpine3.9 }, image: 'benzine/redis:5-alpine3.9' }
|
||||
redis-4.0.14-alpine3.9: { build: { context: ., dockerfile: generated/Dockerfile.4.0.14-alpine3.9 }, image: 'benzine/redis:4.0.14-alpine3.9' }
|
||||
redis-4.0-alpine3.9: { build: { context: ., dockerfile: generated/Dockerfile.4.0-alpine3.9 }, image: 'benzine/redis:4.0-alpine3.9' }
|
||||
redis-4-alpine3.9: { build: { context: ., dockerfile: generated/Dockerfile.4-alpine3.9 }, image: 'benzine/redis:4-alpine3.9' }
|
||||
redis-5.0.4-alpine3.9: { build: { context: ., dockerfile: generated/Dockerfile.5.0.4-alpine3.9 }, image: 'benzine/redis:5.0.4-alpine3.9' }
|
||||
redis-5.0.4-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5.0.4-alpine }, image: 'benzine/redis:5.0.4-alpine' }
|
||||
redis-5.0.4-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0.4-stretch }, image: 'benzine/redis:5.0.4-stretch' }
|
||||
redis-5.0.4: { build: { context: ., dockerfile: generated/Dockerfile.5.0.4 }, image: 'benzine/redis:5.0.4' }
|
||||
redis-5.0.4-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0.4-32bit-stretch }, image: 'benzine/redis:5.0.4-32bit-stretch' }
|
||||
redis-5.0.4-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5.0.4-32bit }, image: 'benzine/redis:5.0.4-32bit' }
|
||||
redis-4.0.13-alpine3.9: { build: { context: ., dockerfile: generated/Dockerfile.4.0.13-alpine3.9 }, image: 'benzine/redis:4.0.13-alpine3.9' }
|
||||
redis-4.0.13-alpine: { build: { context: ., dockerfile: generated/Dockerfile.4.0.13-alpine }, image: 'benzine/redis:4.0.13-alpine' }
|
||||
redis-5.0.3-alpine3.9: { build: { context: ., dockerfile: generated/Dockerfile.5.0.3-alpine3.9 }, image: 'benzine/redis:5.0.3-alpine3.9' }
|
||||
redis-5.0.3-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5.0.3-alpine }, image: 'benzine/redis:5.0.3-alpine' }
|
||||
redis-4.0.13-stretch: { build: { context: ., dockerfile: generated/Dockerfile.4.0.13-stretch }, image: 'benzine/redis:4.0.13-stretch' }
|
||||
redis-4.0.13: { build: { context: ., dockerfile: generated/Dockerfile.4.0.13 }, image: 'benzine/redis:4.0.13' }
|
||||
redis-5.0.3-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0.3-stretch }, image: 'benzine/redis:5.0.3-stretch' }
|
||||
redis-5.0.3: { build: { context: ., dockerfile: generated/Dockerfile.5.0.3 }, image: 'benzine/redis:5.0.3' }
|
||||
redis-4.0.13-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.4.0.13-32bit-stretch }, image: 'benzine/redis:4.0.13-32bit-stretch' }
|
||||
redis-4.0.13-32bit: { build: { context: ., dockerfile: generated/Dockerfile.4.0.13-32bit }, image: 'benzine/redis:4.0.13-32bit' }
|
||||
redis-5.0.3-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0.3-32bit-stretch }, image: 'benzine/redis:5.0.3-32bit-stretch' }
|
||||
redis-5.0.3-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5.0.3-32bit }, image: 'benzine/redis:5.0.3-32bit' }
|
||||
redis-4.0.12-stretch: { build: { context: ., dockerfile: generated/Dockerfile.4.0.12-stretch }, image: 'benzine/redis:4.0.12-stretch' }
|
||||
redis-4.0.12: { build: { context: ., dockerfile: generated/Dockerfile.4.0.12 }, image: 'benzine/redis:4.0.12' }
|
||||
redis-4.0.12-alpine3.9: { build: { context: ., dockerfile: generated/Dockerfile.4.0.12-alpine3.9 }, image: 'benzine/redis:4.0.12-alpine3.9' }
|
||||
redis-4.0.12-alpine: { build: { context: ., dockerfile: generated/Dockerfile.4.0.12-alpine }, image: 'benzine/redis:4.0.12-alpine' }
|
||||
redis-4.0.12-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.4.0.12-32bit-stretch }, image: 'benzine/redis:4.0.12-32bit-stretch' }
|
||||
redis-4.0.12-32bit: { build: { context: ., dockerfile: generated/Dockerfile.4.0.12-32bit }, image: 'benzine/redis:4.0.12-32bit' }
|
||||
redis-4-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.4-alpine3.8 }, image: 'benzine/redis:4-alpine3.8' }
|
||||
redis-4.0-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.4.0-alpine3.8 }, image: 'benzine/redis:4.0-alpine3.8' }
|
||||
redis-4.0.12-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.4.0.12-alpine3.8 }, image: 'benzine/redis:4.0.12-alpine3.8' }
|
||||
redis-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.alpine3.8 }, image: 'benzine/redis:alpine3.8' }
|
||||
redis-5-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.5-alpine3.8 }, image: 'benzine/redis:5-alpine3.8' }
|
||||
redis-5.0-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.5.0-alpine3.8 }, image: 'benzine/redis:5.0-alpine3.8' }
|
||||
redis-5.0.3-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.5.0.3-alpine3.8 }, image: 'benzine/redis:5.0.3-alpine3.8' }
|
||||
redis-5.0.2-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.5.0.2-alpine3.8 }, image: 'benzine/redis:5.0.2-alpine3.8' }
|
||||
redis-5.0.2-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5.0.2-alpine }, image: 'benzine/redis:5.0.2-alpine' }
|
||||
redis-5.0.2-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0.2-stretch }, image: 'benzine/redis:5.0.2-stretch' }
|
||||
redis-5.0.2: { build: { context: ., dockerfile: generated/Dockerfile.5.0.2 }, image: 'benzine/redis:5.0.2' }
|
||||
redis-5.0.2-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0.2-32bit-stretch }, image: 'benzine/redis:5.0.2-32bit-stretch' }
|
||||
redis-5.0.2-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5.0.2-32bit }, image: 'benzine/redis:5.0.2-32bit' }
|
||||
redis-5.0.1-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.5.0.1-alpine3.8 }, image: 'benzine/redis:5.0.1-alpine3.8' }
|
||||
redis-5.0.1-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5.0.1-alpine }, image: 'benzine/redis:5.0.1-alpine' }
|
||||
redis-4.0.11-stretch: { build: { context: ., dockerfile: generated/Dockerfile.4.0.11-stretch }, image: 'benzine/redis:4.0.11-stretch' }
|
||||
redis-4.0.11: { build: { context: ., dockerfile: generated/Dockerfile.4.0.11 }, image: 'benzine/redis:4.0.11' }
|
||||
redis-5.0.1-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0.1-stretch }, image: 'benzine/redis:5.0.1-stretch' }
|
||||
redis-5.0.1: { build: { context: ., dockerfile: generated/Dockerfile.5.0.1 }, image: 'benzine/redis:5.0.1' }
|
||||
redis-4.0.11-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.4.0.11-32bit-stretch }, image: 'benzine/redis:4.0.11-32bit-stretch' }
|
||||
redis-4.0.11-32bit: { build: { context: ., dockerfile: generated/Dockerfile.4.0.11-32bit }, image: 'benzine/redis:4.0.11-32bit' }
|
||||
redis-5.0.1-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0.1-32bit-stretch }, image: 'benzine/redis:5.0.1-32bit-stretch' }
|
||||
redis-5.0.1-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5.0.1-32bit }, image: 'benzine/redis:5.0.1-32bit' }
|
||||
redis-5.0.0-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.5.0.0-alpine3.8 }, image: 'benzine/redis:5.0.0-alpine3.8' }
|
||||
redis-5.0.0-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5.0.0-alpine }, image: 'benzine/redis:5.0.0-alpine' }
|
||||
redis-5.0.0-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0.0-stretch }, image: 'benzine/redis:5.0.0-stretch' }
|
||||
redis-5.0.0: { build: { context: ., dockerfile: generated/Dockerfile.5.0.0 }, image: 'benzine/redis:5.0.0' }
|
||||
redis-5.0.0-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0.0-32bit-stretch }, image: 'benzine/redis:5.0.0-32bit-stretch' }
|
||||
redis-5.0.0-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5.0.0-32bit }, image: 'benzine/redis:5.0.0-32bit' }
|
||||
redis-3-stretch: { build: { context: ., dockerfile: generated/Dockerfile.3-stretch }, image: 'benzine/redis:3-stretch' }
|
||||
redis-3.2-stretch: { build: { context: ., dockerfile: generated/Dockerfile.3.2-stretch }, image: 'benzine/redis:3.2-stretch' }
|
||||
redis-3.2.12-stretch: { build: { context: ., dockerfile: generated/Dockerfile.3.2.12-stretch }, image: 'benzine/redis:3.2.12-stretch' }
|
||||
redis-3: { build: { context: ., dockerfile: generated/Dockerfile.3 }, image: 'benzine/redis:3' }
|
||||
redis-3.2: { build: { context: ., dockerfile: generated/Dockerfile.3.2 }, image: 'benzine/redis:3.2' }
|
||||
redis-3.2.12: { build: { context: ., dockerfile: generated/Dockerfile.3.2.12 }, image: 'benzine/redis:3.2.12' }
|
||||
redis-5.0-rc-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc-stretch }, image: 'benzine/redis:5.0-rc-stretch' }
|
||||
redis-5.0-rc6-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc6-stretch }, image: 'benzine/redis:5.0-rc6-stretch' }
|
||||
redis-5.0-rc: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc }, image: 'benzine/redis:5.0-rc' }
|
||||
redis-5.0-rc6: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc6 }, image: 'benzine/redis:5.0-rc6' }
|
||||
redis-3-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.3-32bit-stretch }, image: 'benzine/redis:3-32bit-stretch' }
|
||||
redis-3.2-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.3.2-32bit-stretch }, image: 'benzine/redis:3.2-32bit-stretch' }
|
||||
redis-3.2.12-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.3.2.12-32bit-stretch }, image: 'benzine/redis:3.2.12-32bit-stretch' }
|
||||
redis-3-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3-32bit }, image: 'benzine/redis:3-32bit' }
|
||||
redis-3.2-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.2-32bit }, image: 'benzine/redis:3.2-32bit' }
|
||||
redis-3.2.12-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.2.12-32bit }, image: 'benzine/redis:3.2.12-32bit' }
|
||||
redis-5.0-rc-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc-32bit-stretch }, image: 'benzine/redis:5.0-rc-32bit-stretch' }
|
||||
redis-5.0-rc6-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc6-32bit-stretch }, image: 'benzine/redis:5.0-rc6-32bit-stretch' }
|
||||
redis-5.0-rc-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc-32bit }, image: 'benzine/redis:5.0-rc-32bit' }
|
||||
redis-5.0-rc6-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc6-32bit }, image: 'benzine/redis:5.0-rc6-32bit' }
|
||||
redis-5.0-rc-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc-alpine3.8 }, image: 'benzine/redis:5.0-rc-alpine3.8' }
|
||||
redis-5.0-rc6-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc6-alpine3.8 }, image: 'benzine/redis:5.0-rc6-alpine3.8' }
|
||||
redis-5.0-rc-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc-alpine }, image: 'benzine/redis:5.0-rc-alpine' }
|
||||
redis-5.0-rc6-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc6-alpine }, image: 'benzine/redis:5.0-rc6-alpine' }
|
||||
redis-3-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.3-alpine3.8 }, image: 'benzine/redis:3-alpine3.8' }
|
||||
redis-3.2-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.3.2-alpine3.8 }, image: 'benzine/redis:3.2-alpine3.8' }
|
||||
redis-3.2.12-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.3.2.12-alpine3.8 }, image: 'benzine/redis:3.2.12-alpine3.8' }
|
||||
redis-3-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3-alpine }, image: 'benzine/redis:3-alpine' }
|
||||
redis-3.2-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.2-alpine }, image: 'benzine/redis:3.2-alpine' }
|
||||
redis-3.2.12-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.2.12-alpine }, image: 'benzine/redis:3.2.12-alpine' }
|
||||
redis-4.0.11-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.4.0.11-alpine3.8 }, image: 'benzine/redis:4.0.11-alpine3.8' }
|
||||
redis-4.0.11-alpine: { build: { context: ., dockerfile: generated/Dockerfile.4.0.11-alpine }, image: 'benzine/redis:4.0.11-alpine' }
|
||||
redis-5.0-rc5-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc5-alpine3.8 }, image: 'benzine/redis:5.0-rc5-alpine3.8' }
|
||||
redis-5.0-rc5-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc5-alpine }, image: 'benzine/redis:5.0-rc5-alpine' }
|
||||
redis-5.0-rc5-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc5-stretch }, image: 'benzine/redis:5.0-rc5-stretch' }
|
||||
redis-5.0-rc5: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc5 }, image: 'benzine/redis:5.0-rc5' }
|
||||
redis-5.0-rc5-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc5-32bit-stretch }, image: 'benzine/redis:5.0-rc5-32bit-stretch' }
|
||||
redis-5.0-rc5-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc5-32bit }, image: 'benzine/redis:5.0-rc5-32bit' }
|
||||
redis-5.0-rc4-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc4-alpine3.8 }, image: 'benzine/redis:5.0-rc4-alpine3.8' }
|
||||
redis-5.0-rc4-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc4-alpine }, image: 'benzine/redis:5.0-rc4-alpine' }
|
||||
redis-5.0-rc4: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc4 }, image: 'benzine/redis:5.0-rc4' }
|
||||
redis-5.0-rc4-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc4-stretch }, image: 'benzine/redis:5.0-rc4-stretch' }
|
||||
redis-5.0-rc4-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc4-32bit-stretch }, image: 'benzine/redis:5.0-rc4-32bit-stretch' }
|
||||
redis-5.0-rc4-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc4-32bit }, image: 'benzine/redis:5.0-rc4-32bit' }
|
||||
redis-4.0.10-stretch: { build: { context: ., dockerfile: generated/Dockerfile.4.0.10-stretch }, image: 'benzine/redis:4.0.10-stretch' }
|
||||
redis-4.0.10: { build: { context: ., dockerfile: generated/Dockerfile.4.0.10 }, image: 'benzine/redis:4.0.10' }
|
||||
redis-4.0.10-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.4.0.10-alpine3.8 }, image: 'benzine/redis:4.0.10-alpine3.8' }
|
||||
redis-4.0.10-alpine: { build: { context: ., dockerfile: generated/Dockerfile.4.0.10-alpine }, image: 'benzine/redis:4.0.10-alpine' }
|
||||
redis-5.0-rc3-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc3-stretch }, image: 'benzine/redis:5.0-rc3-stretch' }
|
||||
redis-5.0-rc3: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc3 }, image: 'benzine/redis:5.0-rc3' }
|
||||
redis-4.0.10-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.4.0.10-32bit-stretch }, image: 'benzine/redis:4.0.10-32bit-stretch' }
|
||||
redis-5.0-rc3-alpine3.8: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc3-alpine3.8 }, image: 'benzine/redis:5.0-rc3-alpine3.8' }
|
||||
redis-5.0-rc3-32bit-stretch: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc3-32bit-stretch }, image: 'benzine/redis:5.0-rc3-32bit-stretch' }
|
||||
redis-5.0-rc3-alpine: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc3-alpine }, image: 'benzine/redis:5.0-rc3-alpine' }
|
||||
redis-4.0.10-32bit: { build: { context: ., dockerfile: generated/Dockerfile.4.0.10-32bit }, image: 'benzine/redis:4.0.10-32bit' }
|
||||
redis-5.0-rc3-32bit: { build: { context: ., dockerfile: generated/Dockerfile.5.0-rc3-32bit }, image: 'benzine/redis:5.0-rc3-32bit' }
|
||||
redis-4.0.9: { build: { context: ., dockerfile: generated/Dockerfile.4.0.9 }, image: 'benzine/redis:4.0.9' }
|
||||
redis-3.2.11: { build: { context: ., dockerfile: generated/Dockerfile.3.2.11 }, image: 'benzine/redis:3.2.11' }
|
||||
redis-4.0.9-32bit: { build: { context: ., dockerfile: generated/Dockerfile.4.0.9-32bit }, image: 'benzine/redis:4.0.9-32bit' }
|
||||
redis-4.0.9-alpine: { build: { context: ., dockerfile: generated/Dockerfile.4.0.9-alpine }, image: 'benzine/redis:4.0.9-alpine' }
|
||||
redis-3.2.11-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.2.11-alpine }, image: 'benzine/redis:3.2.11-alpine' }
|
||||
redis-3.2.11-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.2.11-32bit }, image: 'benzine/redis:3.2.11-32bit' }
|
||||
redis-4.0.8-alpine: { build: { context: ., dockerfile: generated/Dockerfile.4.0.8-alpine }, image: 'benzine/redis:4.0.8-alpine' }
|
||||
redis-4.0.8: { build: { context: ., dockerfile: generated/Dockerfile.4.0.8 }, image: 'benzine/redis:4.0.8' }
|
||||
redis-4.0.8-32bit: { build: { context: ., dockerfile: generated/Dockerfile.4.0.8-32bit }, image: 'benzine/redis:4.0.8-32bit' }
|
||||
redis-4.0.7-alpine: { build: { context: ., dockerfile: generated/Dockerfile.4.0.7-alpine }, image: 'benzine/redis:4.0.7-alpine' }
|
||||
redis-4.0.7: { build: { context: ., dockerfile: generated/Dockerfile.4.0.7 }, image: 'benzine/redis:4.0.7' }
|
||||
redis-4.0.7-32bit: { build: { context: ., dockerfile: generated/Dockerfile.4.0.7-32bit }, image: 'benzine/redis:4.0.7-32bit' }
|
||||
redis-4.0.6-alpine: { build: { context: ., dockerfile: generated/Dockerfile.4.0.6-alpine }, image: 'benzine/redis:4.0.6-alpine' }
|
||||
redis-4.0.6: { build: { context: ., dockerfile: generated/Dockerfile.4.0.6 }, image: 'benzine/redis:4.0.6' }
|
||||
redis-4.0.6-32bit: { build: { context: ., dockerfile: generated/Dockerfile.4.0.6-32bit }, image: 'benzine/redis:4.0.6-32bit' }
|
||||
redis-4.0.5: { build: { context: ., dockerfile: generated/Dockerfile.4.0.5 }, image: 'benzine/redis:4.0.5' }
|
||||
redis-4.0.5-alpine: { build: { context: ., dockerfile: generated/Dockerfile.4.0.5-alpine }, image: 'benzine/redis:4.0.5-alpine' }
|
||||
redis-4.0.5-32bit: { build: { context: ., dockerfile: generated/Dockerfile.4.0.5-32bit }, image: 'benzine/redis:4.0.5-32bit' }
|
||||
redis-4.0.4-alpine: { build: { context: ., dockerfile: generated/Dockerfile.4.0.4-alpine }, image: 'benzine/redis:4.0.4-alpine' }
|
||||
redis-4.0.4: { build: { context: ., dockerfile: generated/Dockerfile.4.0.4 }, image: 'benzine/redis:4.0.4' }
|
||||
redis-4.0.4-32bit: { build: { context: ., dockerfile: generated/Dockerfile.4.0.4-32bit }, image: 'benzine/redis:4.0.4-32bit' }
|
||||
redis-4.0.2-32bit: { build: { context: ., dockerfile: generated/Dockerfile.4.0.2-32bit }, image: 'benzine/redis:4.0.2-32bit' }
|
||||
redis-4.0.2: { build: { context: ., dockerfile: generated/Dockerfile.4.0.2 }, image: 'benzine/redis:4.0.2' }
|
||||
redis-4.0.2-alpine: { build: { context: ., dockerfile: generated/Dockerfile.4.0.2-alpine }, image: 'benzine/redis:4.0.2-alpine' }
|
||||
redis-4.0.1-alpine: { build: { context: ., dockerfile: generated/Dockerfile.4.0.1-alpine }, image: 'benzine/redis:4.0.1-alpine' }
|
||||
redis-4.0.1-32bit: { build: { context: ., dockerfile: generated/Dockerfile.4.0.1-32bit }, image: 'benzine/redis:4.0.1-32bit' }
|
||||
redis-4.0.1: { build: { context: ., dockerfile: generated/Dockerfile.4.0.1 }, image: 'benzine/redis:4.0.1' }
|
||||
redis-3.2.10-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.2.10-alpine }, image: 'benzine/redis:3.2.10-alpine' }
|
||||
redis-3.2.10-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.2.10-32bit }, image: 'benzine/redis:3.2.10-32bit' }
|
||||
redis-3.2.10: { build: { context: ., dockerfile: generated/Dockerfile.3.2.10 }, image: 'benzine/redis:3.2.10' }
|
||||
redis-3.2.9-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.2.9-alpine }, image: 'benzine/redis:3.2.9-alpine' }
|
||||
redis-3.2.9-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.2.9-32bit }, image: 'benzine/redis:3.2.9-32bit' }
|
||||
redis-3.2.9: { build: { context: ., dockerfile: generated/Dockerfile.3.2.9 }, image: 'benzine/redis:3.2.9' }
|
||||
redis-4.0.0-alpine: { build: { context: ., dockerfile: generated/Dockerfile.4.0.0-alpine }, image: 'benzine/redis:4.0.0-alpine' }
|
||||
redis-4.0.0-32bit: { build: { context: ., dockerfile: generated/Dockerfile.4.0.0-32bit }, image: 'benzine/redis:4.0.0-32bit' }
|
||||
redis-4.0.0: { build: { context: ., dockerfile: generated/Dockerfile.4.0.0 }, image: 'benzine/redis:4.0.0' }
|
||||
redis-3-nanoserver: { build: { context: ., dockerfile: generated/Dockerfile.3-nanoserver }, image: 'benzine/redis:3-nanoserver' }
|
||||
redis-3.2-nanoserver: { build: { context: ., dockerfile: generated/Dockerfile.3.2-nanoserver }, image: 'benzine/redis:3.2-nanoserver' }
|
||||
redis-3.2.100-nanoserver: { build: { context: ., dockerfile: generated/Dockerfile.3.2.100-nanoserver }, image: 'benzine/redis:3.2.100-nanoserver' }
|
||||
redis-3-windowsservercore: { build: { context: ., dockerfile: generated/Dockerfile.3-windowsservercore }, image: 'benzine/redis:3-windowsservercore' }
|
||||
redis-3.2-windowsservercore: { build: { context: ., dockerfile: generated/Dockerfile.3.2-windowsservercore }, image: 'benzine/redis:3.2-windowsservercore' }
|
||||
redis-3.2.100-windowsservercore: { build: { context: ., dockerfile: generated/Dockerfile.3.2.100-windowsservercore }, image: 'benzine/redis:3.2.100-windowsservercore' }
|
||||
redis-3.0-nanoserver: { build: { context: ., dockerfile: generated/Dockerfile.3.0-nanoserver }, image: 'benzine/redis:3.0-nanoserver' }
|
||||
redis-3.0.504-nanoserver: { build: { context: ., dockerfile: generated/Dockerfile.3.0.504-nanoserver }, image: 'benzine/redis:3.0.504-nanoserver' }
|
||||
redis-3.0-windowsservercore: { build: { context: ., dockerfile: generated/Dockerfile.3.0-windowsservercore }, image: 'benzine/redis:3.0-windowsservercore' }
|
||||
redis-3.0.504-windowsservercore: { build: { context: ., dockerfile: generated/Dockerfile.3.0.504-windowsservercore }, image: 'benzine/redis:3.0.504-windowsservercore' }
|
||||
redis-3.0-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.0-alpine }, image: 'benzine/redis:3.0-alpine' }
|
||||
redis-3.0.7-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.0.7-alpine }, image: 'benzine/redis:3.0.7-alpine' }
|
||||
redis-3.0-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.0-32bit }, image: 'benzine/redis:3.0-32bit' }
|
||||
redis-3.0.7-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.0.7-32bit }, image: 'benzine/redis:3.0.7-32bit' }
|
||||
redis-3.0: { build: { context: ., dockerfile: generated/Dockerfile.3.0 }, image: 'benzine/redis:3.0' }
|
||||
redis-3.0.7: { build: { context: ., dockerfile: generated/Dockerfile.3.0.7 }, image: 'benzine/redis:3.0.7' }
|
||||
redis-3.2.8-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.2.8-alpine }, image: 'benzine/redis:3.2.8-alpine' }
|
||||
redis-3.2.8-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.2.8-32bit }, image: 'benzine/redis:3.2.8-32bit' }
|
||||
redis-3.2.8: { build: { context: ., dockerfile: generated/Dockerfile.3.2.8 }, image: 'benzine/redis:3.2.8' }
|
||||
redis-3.2.7-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.2.7-alpine }, image: 'benzine/redis:3.2.7-alpine' }
|
||||
redis-3.2.7-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.2.7-32bit }, image: 'benzine/redis:3.2.7-32bit' }
|
||||
redis-3.2.7: { build: { context: ., dockerfile: generated/Dockerfile.3.2.7 }, image: 'benzine/redis:3.2.7' }
|
||||
redis-3.2.6-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.2.6-alpine }, image: 'benzine/redis:3.2.6-alpine' }
|
||||
redis-3.2.6-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.2.6-32bit }, image: 'benzine/redis:3.2.6-32bit' }
|
||||
redis-3.2.6: { build: { context: ., dockerfile: generated/Dockerfile.3.2.6 }, image: 'benzine/redis:3.2.6' }
|
||||
redis-3.0.7-nanoserver: { build: { context: ., dockerfile: generated/Dockerfile.3.0.7-nanoserver }, image: 'benzine/redis:3.0.7-nanoserver' }
|
||||
redis-3.0.7-windowsservercore: { build: { context: ., dockerfile: generated/Dockerfile.3.0.7-windowsservercore }, image: 'benzine/redis:3.0.7-windowsservercore' }
|
||||
redis-3.2.5-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.2.5-32bit }, image: 'benzine/redis:3.2.5-32bit' }
|
||||
redis-3.2.5: { build: { context: ., dockerfile: generated/Dockerfile.3.2.5 }, image: 'benzine/redis:3.2.5' }
|
||||
redis-3.2.5-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.2.5-alpine }, image: 'benzine/redis:3.2.5-alpine' }
|
||||
redis-3.2.4-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.2.4-32bit }, image: 'benzine/redis:3.2.4-32bit' }
|
||||
redis-3.2.4: { build: { context: ., dockerfile: generated/Dockerfile.3.2.4 }, image: 'benzine/redis:3.2.4' }
|
||||
redis-3.2.4-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.2.4-alpine }, image: 'benzine/redis:3.2.4-alpine' }
|
||||
redis-3.2.3-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.2.3-32bit }, image: 'benzine/redis:3.2.3-32bit' }
|
||||
redis-3.2.3: { build: { context: ., dockerfile: generated/Dockerfile.3.2.3 }, image: 'benzine/redis:3.2.3' }
|
||||
redis-3.2.3-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.2.3-alpine }, image: 'benzine/redis:3.2.3-alpine' }
|
||||
redis-3.2.2-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.2.2-alpine }, image: 'benzine/redis:3.2.2-alpine' }
|
||||
redis-3.2.2-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.2.2-32bit }, image: 'benzine/redis:3.2.2-32bit' }
|
||||
redis-3.2.2: { build: { context: ., dockerfile: generated/Dockerfile.3.2.2 }, image: 'benzine/redis:3.2.2' }
|
||||
redis-3.2.1-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.2.1-alpine }, image: 'benzine/redis:3.2.1-alpine' }
|
||||
redis-3.2.1-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.2.1-32bit }, image: 'benzine/redis:3.2.1-32bit' }
|
||||
redis-3.2.1: { build: { context: ., dockerfile: generated/Dockerfile.3.2.1 }, image: 'benzine/redis:3.2.1' }
|
||||
redis-3.2.0-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.2.0-alpine }, image: 'benzine/redis:3.2.0-alpine' }
|
||||
redis-3.2.0-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.2.0-32bit }, image: 'benzine/redis:3.2.0-32bit' }
|
||||
redis-3.2.0: { build: { context: ., dockerfile: generated/Dockerfile.3.2.0 }, image: 'benzine/redis:3.2.0' }
|
||||
redis-2-32bit: { build: { context: ., dockerfile: generated/Dockerfile.2-32bit }, image: 'benzine/redis:2-32bit' }
|
||||
redis-2.8-32bit: { build: { context: ., dockerfile: generated/Dockerfile.2.8-32bit }, image: 'benzine/redis:2.8-32bit' }
|
||||
redis-2.8.23-32bit: { build: { context: ., dockerfile: generated/Dockerfile.2.8.23-32bit }, image: 'benzine/redis:2.8.23-32bit' }
|
||||
redis-2: { build: { context: ., dockerfile: generated/Dockerfile.2 }, image: 'benzine/redis:2' }
|
||||
redis-2.8: { build: { context: ., dockerfile: generated/Dockerfile.2.8 }, image: 'benzine/redis:2.8' }
|
||||
redis-2.8.23: { build: { context: ., dockerfile: generated/Dockerfile.2.8.23 }, image: 'benzine/redis:2.8.23' }
|
||||
redis-3.0.6-alpine: { build: { context: ., dockerfile: generated/Dockerfile.3.0.6-alpine }, image: 'benzine/redis:3.0.6-alpine' }
|
||||
redis-3.0.6-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.0.6-32bit }, image: 'benzine/redis:3.0.6-32bit' }
|
||||
redis-3.0.6: { build: { context: ., dockerfile: generated/Dockerfile.3.0.6 }, image: 'benzine/redis:3.0.6' }
|
||||
redis-2.6-32bit: { build: { context: ., dockerfile: generated/Dockerfile.2.6-32bit }, image: 'benzine/redis:2.6-32bit' }
|
||||
redis-2.6.17-32bit: { build: { context: ., dockerfile: generated/Dockerfile.2.6.17-32bit }, image: 'benzine/redis:2.6.17-32bit' }
|
||||
redis-2.6: { build: { context: ., dockerfile: generated/Dockerfile.2.6 }, image: 'benzine/redis:2.6' }
|
||||
redis-2.6.17: { build: { context: ., dockerfile: generated/Dockerfile.2.6.17 }, image: 'benzine/redis:2.6.17' }
|
||||
redis-3.0.5-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.0.5-32bit }, image: 'benzine/redis:3.0.5-32bit' }
|
||||
redis-3.0.5: { build: { context: ., dockerfile: generated/Dockerfile.3.0.5 }, image: 'benzine/redis:3.0.5' }
|
||||
redis-3.0.4-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.0.4-32bit }, image: 'benzine/redis:3.0.4-32bit' }
|
||||
redis-3.0.4: { build: { context: ., dockerfile: generated/Dockerfile.3.0.4 }, image: 'benzine/redis:3.0.4' }
|
||||
redis-2.8.22-32bit: { build: { context: ., dockerfile: generated/Dockerfile.2.8.22-32bit }, image: 'benzine/redis:2.8.22-32bit' }
|
||||
redis-2.8.22: { build: { context: ., dockerfile: generated/Dockerfile.2.8.22 }, image: 'benzine/redis:2.8.22' }
|
||||
redis-3.0.3-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.0.3-32bit }, image: 'benzine/redis:3.0.3-32bit' }
|
||||
redis-3.0.3: { build: { context: ., dockerfile: generated/Dockerfile.3.0.3 }, image: 'benzine/redis:3.0.3' }
|
||||
redis-3.0.2-32bit: { build: { context: ., dockerfile: generated/Dockerfile.3.0.2-32bit }, image: 'benzine/redis:3.0.2-32bit' }
|
||||
redis-2.8.21-32bit: { build: { context: ., dockerfile: generated/Dockerfile.2.8.21-32bit }, image: 'benzine/redis:2.8.21-32bit' }
|
||||
redis-2.8.6: { build: { context: ., dockerfile: generated/Dockerfile.2.8.6 }, image: 'benzine/redis:2.8.6' }
|
||||
redis-2.8.7: { build: { context: ., dockerfile: generated/Dockerfile.2.8.7 }, image: 'benzine/redis:2.8.7' }
|
||||
redis-2.8.8: { build: { context: ., dockerfile: generated/Dockerfile.2.8.8 }, image: 'benzine/redis:2.8.8' }
|
||||
redis-2.8.9: { build: { context: ., dockerfile: generated/Dockerfile.2.8.9 }, image: 'benzine/redis:2.8.9' }
|
||||
redis-2.8.11: { build: { context: ., dockerfile: generated/Dockerfile.2.8.11 }, image: 'benzine/redis:2.8.11' }
|
||||
redis-2.8.18: { build: { context: ., dockerfile: generated/Dockerfile.2.8.18 }, image: 'benzine/redis:2.8.18' }
|
||||
redis-2.8.19: { build: { context: ., dockerfile: generated/Dockerfile.2.8.19 }, image: 'benzine/redis:2.8.19' }
|
||||
redis-2.8.10: { build: { context: ., dockerfile: generated/Dockerfile.2.8.10 }, image: 'benzine/redis:2.8.10' }
|
||||
redis-2.8.12: { build: { context: ., dockerfile: generated/Dockerfile.2.8.12 }, image: 'benzine/redis:2.8.12' }
|
||||
redis-2.8.13: { build: { context: ., dockerfile: generated/Dockerfile.2.8.13 }, image: 'benzine/redis:2.8.13' }
|
||||
redis-2.8.14: { build: { context: ., dockerfile: generated/Dockerfile.2.8.14 }, image: 'benzine/redis:2.8.14' }
|
||||
redis-2.8.16: { build: { context: ., dockerfile: generated/Dockerfile.2.8.16 }, image: 'benzine/redis:2.8.16' }
|
||||
redis-2.8.17: { build: { context: ., dockerfile: generated/Dockerfile.2.8.17 }, image: 'benzine/redis:2.8.17' }
|
||||
redis-2.8.15: { build: { context: ., dockerfile: generated/Dockerfile.2.8.15 }, image: 'benzine/redis:2.8.15' }
|
||||
redis-2.8.21: { build: { context: ., dockerfile: generated/Dockerfile.2.8.21 }, image: 'benzine/redis:2.8.21' }
|
||||
redis-2.8.20: { build: { context: ., dockerfile: generated/Dockerfile.2.8.20 }, image: 'benzine/redis:2.8.20' }
|
||||
redis-3.0.1: { build: { context: ., dockerfile: generated/Dockerfile.3.0.1 }, image: 'benzine/redis:3.0.1' }
|
||||
redis-3.0.0: { build: { context: ., dockerfile: generated/Dockerfile.3.0.0 }, image: 'benzine/redis:3.0.0' }
|
||||
redis-3.0.2: { build: { context: ., dockerfile: generated/Dockerfile.3.0.2 }, image: 'benzine/redis:3.0.2' }
|
17
wordpress/CODE_OF_CONDUCT.md
Normal file
17
wordpress/CODE_OF_CONDUCT.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
This code of conduct outlines our expectations for participants within the open source community. Anyone who violates this code of conduct may be banned from contributing here.
|
||||
|
||||
# Requirements
|
||||
* __Be friendly and patient.__
|
||||
* __Be welcoming__ _We strive to be a community that welcomes and supports people of all backgrounds and identities._
|
||||
* __Be respectful__ _Not all of us will agree all the time, but disagreement is no excuse for poor behavior and poor manners._
|
||||
|
||||
# Unacceptable Behaviour
|
||||
* Offensive comments related to gender, sexual orientation, disability, mental illness, physical appearance, body size, race, age, regional discrimination, political or religious affiliation.
|
||||
* Threats of violence, both physical and psycological.
|
||||
* Incitement of violence towards any individual, including encouraging a person to commit suicide or to engage in self-harm.
|
||||
* Continued communication after requests to cease.
|
||||
|
||||
# Interactions
|
||||
* Don't just tell somebody they are wrong, or what they have done is wrong. You must always explain what is wrong, and why it is wrong.
|
||||
* Don't reject contributions that are partially complete and then go and commit your own version. Try to work with the author to complete their work.
|
||||
* We encourage everyone to participate and are committed to building a community for all, we seek to treat everyone both as fairly and equally as possible.
|
8
wordpress/Dockerfile
Normal file
8
wordpress/Dockerfile
Normal file
|
@ -0,0 +1,8 @@
|
|||
FROM benzine/php:nginx
|
||||
COPY nginx.runit /etc/service/nginx/run
|
||||
RUN wget -O /usr/local/bin/wp https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && \
|
||||
chmod +x /etc/service/nginx/run \
|
||||
/usr/local/bin/wp \
|
||||
&& \
|
||||
echo "alias wp=\"wp --allow-root\"" >> /etc/bash.bashrc && \
|
||||
wp --allow-root --version
|
674
wordpress/LICENSE.md
Normal file
674
wordpress/LICENSE.md
Normal file
|
@ -0,0 +1,674 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
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 <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
6
wordpress/nginx.runit
Normal file
6
wordpress/nginx.runit
Normal file
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
WP_ROOT="${WP_ROOT:-/app}"
|
||||
sed -i "s|root .*|root ${WP_ROOT};|" /etc/nginx/sites-enabled/default
|
||||
sed -i "s|root .*|root ${WP_ROOT};|" /etc/nginx/sites-enabled/default-ssl
|
||||
|
||||
/usr/sbin/nginx
|
Loading…
Reference in a new issue