Run update.sh
This commit is contained in:
parent
ace7a0f425
commit
ac4ff20a75
|
|
@ -17,7 +17,7 @@ WARNING:
|
|||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
- [`7.7.5`, `7.7` (*7.7/Dockerfile*)](https://github.com/Bonitasoft-Community/docker_bonita/blob/d291374f0cdbf3c78fa8784c4930511dcffba9c9/7.7/Dockerfile)
|
||||
- [`7.8.2`, `7.8`, `latest` (*7.8/Dockerfile*)](https://github.com/Bonitasoft-Community/docker_bonita/blob/8b60023f6c50885956bb587523dec61f0158c7f0/7.8/Dockerfile)
|
||||
- [`7.8.3`, `7.8`, `latest` (*7.8/Dockerfile*)](https://github.com/Bonitasoft-Community/docker_bonita/blob/fd5991e6216d30f45ff6625f962645aaaae84ec5/7.8/Dockerfile)
|
||||
|
||||
# Quick reference
|
||||
|
||||
|
|
@ -268,9 +268,9 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat
|
|||
|
||||
```console
|
||||
cd bonita_migration
|
||||
wget https://release.ow2.org/bonita/bonita-migration-distrib-2.38.0.zip
|
||||
wget https://release.ow2.org/bonita/bonita-migration-distrib-2.39.0.zip
|
||||
wget https://download.forge.ow2.org/bonita/BonitaBPMCommunity-7.2.4-Tomcat-7.0.67.zip
|
||||
unzip bonita-migration-distrib-2.38.0.zip
|
||||
unzip bonita-migration-distrib-2.39.0.zip
|
||||
unzip BonitaBPMCommunity-7.2.4-Tomcat-7.0.67.zip
|
||||
```
|
||||
|
||||
|
|
@ -285,14 +285,14 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat
|
|||
|
||||
```console
|
||||
cd bonita_migration
|
||||
wget https://release.ow2.org/bonita/bonita-migration-distrib-2.38.0.zip
|
||||
unzip bonita-migration-distrib-2.38.0.zip
|
||||
wget https://release.ow2.org/bonita/bonita-migration-distrib-2.39.0.zip
|
||||
unzip bonita-migration-distrib-2.39.0.zip
|
||||
```
|
||||
|
||||
- Configure the migration tool
|
||||
|
||||
```console
|
||||
$ cd bonita-migration-distrib-2.38.0
|
||||
$ cd bonita-migration-distrib-2.39.0
|
||||
```
|
||||
|
||||
edit the migration tool config to point towards the copy of bonita home and db
|
||||
|
|
@ -329,17 +329,17 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat
|
|||
- If >= 7.3.0
|
||||
|
||||
```console
|
||||
$ docker run --name=bonita_7.8.2_postgres --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:7.8.2
|
||||
$ docker run --name=bonita_7.8.3_postgres --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:7.8.3
|
||||
```
|
||||
|
||||
- Reapply specific configuration if needed, for example with a version >= 7.3.0 :
|
||||
|
||||
```console
|
||||
$ docker exec -ti bonita_7.8.2_postgres /bin/bash
|
||||
$ docker exec -ti bonita_7.8.3_postgres /bin/bash
|
||||
```
|
||||
|
||||
```console
|
||||
$ cd /opt/bonita/BonitaCommunity-7.8.2-Tomcat-8.5.34/setup
|
||||
$ cd /opt/bonita/BonitaCommunity-7.8.3-Tomcat-8.5.34/setup
|
||||
$ ./setup.sh pull
|
||||
$ TENANT_LOGIN=tech_user
|
||||
$ TENANT_PASSWORD=secret
|
||||
|
|
@ -359,7 +359,7 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat
|
|||
```
|
||||
|
||||
```console
|
||||
$ docker restart bonita_7.8.2_postgres
|
||||
$ docker restart bonita_7.8.3_postgres
|
||||
```
|
||||
|
||||
For more details regarding Bonita migration, see the [documentation](https://documentation.bonitasoft.com/bonita/7.8/migrate-from-an-earlier-version-of-bonita-bpm).
|
||||
|
|
@ -471,7 +471,7 @@ For example, you can increase the log level :
|
|||
```console
|
||||
$ mkdir -p custom_bonita
|
||||
$ echo '#!/bin/bash' > custom_bonita/bonita.sh
|
||||
$ echo 'sed -i "s/^org.bonitasoft.level = WARNING$/org.bonitasoft.level = FINEST/" /opt/bonita/BonitaCommunity-7.8.2-Tomcat-8.5.34/server/conf/logging.properties' >> custom_bonita/bonita.sh
|
||||
$ echo 'sed -i "s/^org.bonitasoft.level = WARNING$/org.bonitasoft.level = FINEST/" /opt/bonita/BonitaCommunity-7.8.3-Tomcat-8.5.34/server/conf/logging.properties' >> custom_bonita/bonita.sh
|
||||
$ chmod +x custom_bonita/bonita.sh
|
||||
|
||||
$ docker run --name bonita_custom -v "$PWD"/custom_bonita/:/opt/custom-init.d -d -p 8080:8080 bonita
|
||||
|
|
@ -481,7 +481,7 @@ Note: There are several ways to check the `bonita` logs. One of them is
|
|||
|
||||
```console
|
||||
$ docker exec -ti bonita_custom /bin/bash
|
||||
tail -f /opt/bonita/BonitaCommunity-7.8.2-Tomcat-8.5.34/server/logs/bonita.`date +%Y-%m-%d`.log
|
||||
tail -f /opt/bonita/BonitaCommunity-7.8.3-Tomcat-8.5.34/server/logs/bonita.`date +%Y-%m-%d`.log
|
||||
```
|
||||
|
||||
# License
|
||||
|
|
|
|||
|
|
@ -16,8 +16,8 @@ WARNING:
|
|||
|
||||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
- [`2.16.2`, `2.16`, `2`, `latest` (*2/debian/Dockerfile*)](https://github.com/docker-library/ghost/blob/375352f9ef19aa856d93b5008b44f959ce97b5ab/2/debian/Dockerfile)
|
||||
- [`2.16.2-alpine`, `2.16-alpine`, `2-alpine`, `alpine` (*2/alpine/Dockerfile*)](https://github.com/docker-library/ghost/blob/375352f9ef19aa856d93b5008b44f959ce97b5ab/2/alpine/Dockerfile)
|
||||
- [`2.16.4`, `2.16`, `2`, `latest` (*2/debian/Dockerfile*)](https://github.com/docker-library/ghost/blob/f740a8ac3d105798cf5c86aa8073d37305927034/2/debian/Dockerfile)
|
||||
- [`2.16.4-alpine`, `2.16-alpine`, `2-alpine`, `alpine` (*2/alpine/Dockerfile*)](https://github.com/docker-library/ghost/blob/f740a8ac3d105798cf5c86aa8073d37305927034/2/alpine/Dockerfile)
|
||||
- [`1.25.7`, `1.25`, `1` (*1/debian/Dockerfile*)](https://github.com/docker-library/ghost/blob/c4b0064aa0ef96e7fea06bbbd41ab82722a7f80c/1/debian/Dockerfile)
|
||||
- [`1.25.7-alpine`, `1.25-alpine`, `1-alpine` (*1/alpine/Dockerfile*)](https://github.com/docker-library/ghost/blob/c4b0064aa0ef96e7fea06bbbd41ab82722a7f80c/1/alpine/Dockerfile)
|
||||
|
||||
|
|
|
|||
|
|
@ -16,12 +16,12 @@ WARNING:
|
|||
|
||||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
- [`10.4.3-bionic`, `10.4-bionic`, `10.4.3`, `10.4` (*10.4/Dockerfile*)](https://github.com/docker-library/mariadb/blob/43ab06b91a7a83b697f402fd86d91322341007ee/10.4/Dockerfile)
|
||||
- [`10.3.13-bionic`, `10.3-bionic`, `10-bionic`, `bionic`, `10.3.13`, `10.3`, `10`, `latest` (*10.3/Dockerfile*)](https://github.com/docker-library/mariadb/blob/43ab06b91a7a83b697f402fd86d91322341007ee/10.3/Dockerfile)
|
||||
- [`10.2.22-bionic`, `10.2-bionic`, `10.2.22`, `10.2` (*10.2/Dockerfile*)](https://github.com/docker-library/mariadb/blob/43ab06b91a7a83b697f402fd86d91322341007ee/10.2/Dockerfile)
|
||||
- [`10.1.38-bionic`, `10.1-bionic`, `10.1.38`, `10.1` (*10.1/Dockerfile*)](https://github.com/docker-library/mariadb/blob/43ab06b91a7a83b697f402fd86d91322341007ee/10.1/Dockerfile)
|
||||
- [`10.0.38-xenial`, `10.0-xenial`, `10.0.38`, `10.0` (*10.0/Dockerfile*)](https://github.com/docker-library/mariadb/blob/43ab06b91a7a83b697f402fd86d91322341007ee/10.0/Dockerfile)
|
||||
- [`5.5.63-trusty`, `5.5-trusty`, `5-trusty`, `5.5.63`, `5.5`, `5` (*5.5/Dockerfile*)](https://github.com/docker-library/mariadb/blob/43ab06b91a7a83b697f402fd86d91322341007ee/5.5/Dockerfile)
|
||||
- [`10.4.3-bionic`, `10.4-bionic`, `rc-bionic`, `10.4.3`, `10.4`, `rc` (*10.4/Dockerfile*)](https://github.com/docker-library/mariadb/blob/93f1e9c9082364522c77b94e98299d7d398089f8/10.4/Dockerfile)
|
||||
- [`10.3.13-bionic`, `10.3-bionic`, `10-bionic`, `bionic`, `10.3.13`, `10.3`, `10`, `latest` (*10.3/Dockerfile*)](https://github.com/docker-library/mariadb/blob/93f1e9c9082364522c77b94e98299d7d398089f8/10.3/Dockerfile)
|
||||
- [`10.2.22-bionic`, `10.2-bionic`, `10.2.22`, `10.2` (*10.2/Dockerfile*)](https://github.com/docker-library/mariadb/blob/93f1e9c9082364522c77b94e98299d7d398089f8/10.2/Dockerfile)
|
||||
- [`10.1.38-bionic`, `10.1-bionic`, `10.1.38`, `10.1` (*10.1/Dockerfile*)](https://github.com/docker-library/mariadb/blob/93f1e9c9082364522c77b94e98299d7d398089f8/10.1/Dockerfile)
|
||||
- [`10.0.38-xenial`, `10.0-xenial`, `10.0.38`, `10.0` (*10.0/Dockerfile*)](https://github.com/docker-library/mariadb/blob/93f1e9c9082364522c77b94e98299d7d398089f8/10.0/Dockerfile)
|
||||
- [`5.5.63-trusty`, `5.5-trusty`, `5-trusty`, `5.5.63`, `5.5`, `5` (*5.5/Dockerfile*)](https://github.com/docker-library/mariadb/blob/93f1e9c9082364522c77b94e98299d7d398089f8/5.5/Dockerfile)
|
||||
|
||||
# Quick reference
|
||||
|
||||
|
|
|
|||
|
|
@ -16,40 +16,40 @@ WARNING:
|
|||
|
||||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
- [`7.3.2-cli-stretch`, `7.3-cli-stretch`, `7-cli-stretch`, `cli-stretch`, `7.3.2-stretch`, `7.3-stretch`, `7-stretch`, `stretch`, `7.3.2-cli`, `7.3-cli`, `7-cli`, `cli`, `7.3.2`, `7.3`, `7`, `latest` (*7.3/stretch/cli/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.3/stretch/cli/Dockerfile)
|
||||
- [`7.3.2-apache-stretch`, `7.3-apache-stretch`, `7-apache-stretch`, `apache-stretch`, `7.3.2-apache`, `7.3-apache`, `7-apache`, `apache` (*7.3/stretch/apache/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.3/stretch/apache/Dockerfile)
|
||||
- [`7.3.2-fpm-stretch`, `7.3-fpm-stretch`, `7-fpm-stretch`, `fpm-stretch`, `7.3.2-fpm`, `7.3-fpm`, `7-fpm`, `fpm` (*7.3/stretch/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.3/stretch/fpm/Dockerfile)
|
||||
- [`7.3.2-zts-stretch`, `7.3-zts-stretch`, `7-zts-stretch`, `zts-stretch`, `7.3.2-zts`, `7.3-zts`, `7-zts`, `zts` (*7.3/stretch/zts/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.3/stretch/zts/Dockerfile)
|
||||
- [`7.3.2-cli-alpine3.9`, `7.3-cli-alpine3.9`, `7-cli-alpine3.9`, `cli-alpine3.9`, `7.3.2-alpine3.9`, `7.3-alpine3.9`, `7-alpine3.9`, `alpine3.9`, `7.3.2-cli-alpine`, `7.3-cli-alpine`, `7-cli-alpine`, `cli-alpine`, `7.3.2-alpine`, `7.3-alpine`, `7-alpine`, `alpine` (*7.3/alpine3.9/cli/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.3/alpine3.9/cli/Dockerfile)
|
||||
- [`7.3.2-fpm-alpine3.9`, `7.3-fpm-alpine3.9`, `7-fpm-alpine3.9`, `fpm-alpine3.9`, `7.3.2-fpm-alpine`, `7.3-fpm-alpine`, `7-fpm-alpine`, `fpm-alpine` (*7.3/alpine3.9/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.3/alpine3.9/fpm/Dockerfile)
|
||||
- [`7.3.2-zts-alpine3.9`, `7.3-zts-alpine3.9`, `7-zts-alpine3.9`, `zts-alpine3.9`, `7.3.2-zts-alpine`, `7.3-zts-alpine`, `7-zts-alpine`, `zts-alpine` (*7.3/alpine3.9/zts/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.3/alpine3.9/zts/Dockerfile)
|
||||
- [`7.3.2-cli-alpine3.8`, `7.3-cli-alpine3.8`, `7-cli-alpine3.8`, `cli-alpine3.8`, `7.3.2-alpine3.8`, `7.3-alpine3.8`, `7-alpine3.8`, `alpine3.8` (*7.3/alpine3.8/cli/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.3/alpine3.8/cli/Dockerfile)
|
||||
- [`7.3.2-fpm-alpine3.8`, `7.3-fpm-alpine3.8`, `7-fpm-alpine3.8`, `fpm-alpine3.8` (*7.3/alpine3.8/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.3/alpine3.8/fpm/Dockerfile)
|
||||
- [`7.3.2-zts-alpine3.8`, `7.3-zts-alpine3.8`, `7-zts-alpine3.8`, `zts-alpine3.8` (*7.3/alpine3.8/zts/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.3/alpine3.8/zts/Dockerfile)
|
||||
- [`7.2.15-cli-stretch`, `7.2-cli-stretch`, `7.2.15-stretch`, `7.2-stretch`, `7.2.15-cli`, `7.2-cli`, `7.2.15`, `7.2` (*7.2/stretch/cli/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.2/stretch/cli/Dockerfile)
|
||||
- [`7.2.15-apache-stretch`, `7.2-apache-stretch`, `7.2.15-apache`, `7.2-apache` (*7.2/stretch/apache/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.2/stretch/apache/Dockerfile)
|
||||
- [`7.2.15-fpm-stretch`, `7.2-fpm-stretch`, `7.2.15-fpm`, `7.2-fpm` (*7.2/stretch/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.2/stretch/fpm/Dockerfile)
|
||||
- [`7.2.15-zts-stretch`, `7.2-zts-stretch`, `7.2.15-zts`, `7.2-zts` (*7.2/stretch/zts/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.2/stretch/zts/Dockerfile)
|
||||
- [`7.2.15-cli-alpine3.9`, `7.2-cli-alpine3.9`, `7.2.15-alpine3.9`, `7.2-alpine3.9`, `7.2.15-cli-alpine`, `7.2-cli-alpine`, `7.2.15-alpine`, `7.2-alpine` (*7.2/alpine3.9/cli/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.2/alpine3.9/cli/Dockerfile)
|
||||
- [`7.2.15-fpm-alpine3.9`, `7.2-fpm-alpine3.9`, `7.2.15-fpm-alpine`, `7.2-fpm-alpine` (*7.2/alpine3.9/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.2/alpine3.9/fpm/Dockerfile)
|
||||
- [`7.2.15-zts-alpine3.9`, `7.2-zts-alpine3.9`, `7.2.15-zts-alpine`, `7.2-zts-alpine` (*7.2/alpine3.9/zts/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.2/alpine3.9/zts/Dockerfile)
|
||||
- [`7.2.15-cli-alpine3.8`, `7.2-cli-alpine3.8`, `7.2.15-alpine3.8`, `7.2-alpine3.8` (*7.2/alpine3.8/cli/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.2/alpine3.8/cli/Dockerfile)
|
||||
- [`7.2.15-fpm-alpine3.8`, `7.2-fpm-alpine3.8` (*7.2/alpine3.8/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.2/alpine3.8/fpm/Dockerfile)
|
||||
- [`7.2.15-zts-alpine3.8`, `7.2-zts-alpine3.8` (*7.2/alpine3.8/zts/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.2/alpine3.8/zts/Dockerfile)
|
||||
- [`7.1.26-cli-stretch`, `7.1-cli-stretch`, `7.1.26-stretch`, `7.1-stretch`, `7.1.26-cli`, `7.1-cli`, `7.1.26`, `7.1` (*7.1/stretch/cli/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.1/stretch/cli/Dockerfile)
|
||||
- [`7.1.26-apache-stretch`, `7.1-apache-stretch`, `7.1.26-apache`, `7.1-apache` (*7.1/stretch/apache/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.1/stretch/apache/Dockerfile)
|
||||
- [`7.1.26-fpm-stretch`, `7.1-fpm-stretch`, `7.1.26-fpm`, `7.1-fpm` (*7.1/stretch/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.1/stretch/fpm/Dockerfile)
|
||||
- [`7.1.26-zts-stretch`, `7.1-zts-stretch`, `7.1.26-zts`, `7.1-zts` (*7.1/stretch/zts/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.1/stretch/zts/Dockerfile)
|
||||
- [`7.1.26-cli-jessie`, `7.1-cli-jessie`, `7.1.26-jessie`, `7.1-jessie` (*7.1/jessie/cli/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.1/jessie/cli/Dockerfile)
|
||||
- [`7.1.26-apache-jessie`, `7.1-apache-jessie` (*7.1/jessie/apache/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.1/jessie/apache/Dockerfile)
|
||||
- [`7.1.26-fpm-jessie`, `7.1-fpm-jessie` (*7.1/jessie/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.1/jessie/fpm/Dockerfile)
|
||||
- [`7.1.26-zts-jessie`, `7.1-zts-jessie` (*7.1/jessie/zts/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.1/jessie/zts/Dockerfile)
|
||||
- [`7.1.26-cli-alpine3.9`, `7.1-cli-alpine3.9`, `7.1.26-alpine3.9`, `7.1-alpine3.9`, `7.1.26-cli-alpine`, `7.1-cli-alpine`, `7.1.26-alpine`, `7.1-alpine` (*7.1/alpine3.9/cli/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.1/alpine3.9/cli/Dockerfile)
|
||||
- [`7.1.26-fpm-alpine3.9`, `7.1-fpm-alpine3.9`, `7.1.26-fpm-alpine`, `7.1-fpm-alpine` (*7.1/alpine3.9/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.1/alpine3.9/fpm/Dockerfile)
|
||||
- [`7.1.26-zts-alpine3.9`, `7.1-zts-alpine3.9`, `7.1.26-zts-alpine`, `7.1-zts-alpine` (*7.1/alpine3.9/zts/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.1/alpine3.9/zts/Dockerfile)
|
||||
- [`7.1.26-cli-alpine3.8`, `7.1-cli-alpine3.8`, `7.1.26-alpine3.8`, `7.1-alpine3.8` (*7.1/alpine3.8/cli/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.1/alpine3.8/cli/Dockerfile)
|
||||
- [`7.1.26-fpm-alpine3.8`, `7.1-fpm-alpine3.8` (*7.1/alpine3.8/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.1/alpine3.8/fpm/Dockerfile)
|
||||
- [`7.1.26-zts-alpine3.8`, `7.1-zts-alpine3.8` (*7.1/alpine3.8/zts/Dockerfile*)](https://github.com/docker-library/php/blob/640a30e8ff27b1ad7523a212522472fda84d56ff/7.1/alpine3.8/zts/Dockerfile)
|
||||
- [`7.3.3-cli-stretch`, `7.3-cli-stretch`, `7-cli-stretch`, `cli-stretch`, `7.3.3-stretch`, `7.3-stretch`, `7-stretch`, `stretch`, `7.3.3-cli`, `7.3-cli`, `7-cli`, `cli`, `7.3.3`, `7.3`, `7`, `latest` (*7.3/stretch/cli/Dockerfile*)](https://github.com/docker-library/php/blob/bb16de8a711d1ba1dc76adf4665b3b1c06a06922/7.3/stretch/cli/Dockerfile)
|
||||
- [`7.3.3-apache-stretch`, `7.3-apache-stretch`, `7-apache-stretch`, `apache-stretch`, `7.3.3-apache`, `7.3-apache`, `7-apache`, `apache` (*7.3/stretch/apache/Dockerfile*)](https://github.com/docker-library/php/blob/bb16de8a711d1ba1dc76adf4665b3b1c06a06922/7.3/stretch/apache/Dockerfile)
|
||||
- [`7.3.3-fpm-stretch`, `7.3-fpm-stretch`, `7-fpm-stretch`, `fpm-stretch`, `7.3.3-fpm`, `7.3-fpm`, `7-fpm`, `fpm` (*7.3/stretch/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/bb16de8a711d1ba1dc76adf4665b3b1c06a06922/7.3/stretch/fpm/Dockerfile)
|
||||
- [`7.3.3-zts-stretch`, `7.3-zts-stretch`, `7-zts-stretch`, `zts-stretch`, `7.3.3-zts`, `7.3-zts`, `7-zts`, `zts` (*7.3/stretch/zts/Dockerfile*)](https://github.com/docker-library/php/blob/bb16de8a711d1ba1dc76adf4665b3b1c06a06922/7.3/stretch/zts/Dockerfile)
|
||||
- [`7.3.3-cli-alpine3.9`, `7.3-cli-alpine3.9`, `7-cli-alpine3.9`, `cli-alpine3.9`, `7.3.3-alpine3.9`, `7.3-alpine3.9`, `7-alpine3.9`, `alpine3.9`, `7.3.3-cli-alpine`, `7.3-cli-alpine`, `7-cli-alpine`, `cli-alpine`, `7.3.3-alpine`, `7.3-alpine`, `7-alpine`, `alpine` (*7.3/alpine3.9/cli/Dockerfile*)](https://github.com/docker-library/php/blob/bb16de8a711d1ba1dc76adf4665b3b1c06a06922/7.3/alpine3.9/cli/Dockerfile)
|
||||
- [`7.3.3-fpm-alpine3.9`, `7.3-fpm-alpine3.9`, `7-fpm-alpine3.9`, `fpm-alpine3.9`, `7.3.3-fpm-alpine`, `7.3-fpm-alpine`, `7-fpm-alpine`, `fpm-alpine` (*7.3/alpine3.9/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/bb16de8a711d1ba1dc76adf4665b3b1c06a06922/7.3/alpine3.9/fpm/Dockerfile)
|
||||
- [`7.3.3-zts-alpine3.9`, `7.3-zts-alpine3.9`, `7-zts-alpine3.9`, `zts-alpine3.9`, `7.3.3-zts-alpine`, `7.3-zts-alpine`, `7-zts-alpine`, `zts-alpine` (*7.3/alpine3.9/zts/Dockerfile*)](https://github.com/docker-library/php/blob/bb16de8a711d1ba1dc76adf4665b3b1c06a06922/7.3/alpine3.9/zts/Dockerfile)
|
||||
- [`7.3.3-cli-alpine3.8`, `7.3-cli-alpine3.8`, `7-cli-alpine3.8`, `cli-alpine3.8`, `7.3.3-alpine3.8`, `7.3-alpine3.8`, `7-alpine3.8`, `alpine3.8` (*7.3/alpine3.8/cli/Dockerfile*)](https://github.com/docker-library/php/blob/bb16de8a711d1ba1dc76adf4665b3b1c06a06922/7.3/alpine3.8/cli/Dockerfile)
|
||||
- [`7.3.3-fpm-alpine3.8`, `7.3-fpm-alpine3.8`, `7-fpm-alpine3.8`, `fpm-alpine3.8` (*7.3/alpine3.8/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/bb16de8a711d1ba1dc76adf4665b3b1c06a06922/7.3/alpine3.8/fpm/Dockerfile)
|
||||
- [`7.3.3-zts-alpine3.8`, `7.3-zts-alpine3.8`, `7-zts-alpine3.8`, `zts-alpine3.8` (*7.3/alpine3.8/zts/Dockerfile*)](https://github.com/docker-library/php/blob/bb16de8a711d1ba1dc76adf4665b3b1c06a06922/7.3/alpine3.8/zts/Dockerfile)
|
||||
- [`7.2.16-cli-stretch`, `7.2-cli-stretch`, `7.2.16-stretch`, `7.2-stretch`, `7.2.16-cli`, `7.2-cli`, `7.2.16`, `7.2` (*7.2/stretch/cli/Dockerfile*)](https://github.com/docker-library/php/blob/873725e57ec2fc5f2642dc0023676597bcc4bea9/7.2/stretch/cli/Dockerfile)
|
||||
- [`7.2.16-apache-stretch`, `7.2-apache-stretch`, `7.2.16-apache`, `7.2-apache` (*7.2/stretch/apache/Dockerfile*)](https://github.com/docker-library/php/blob/873725e57ec2fc5f2642dc0023676597bcc4bea9/7.2/stretch/apache/Dockerfile)
|
||||
- [`7.2.16-fpm-stretch`, `7.2-fpm-stretch`, `7.2.16-fpm`, `7.2-fpm` (*7.2/stretch/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/873725e57ec2fc5f2642dc0023676597bcc4bea9/7.2/stretch/fpm/Dockerfile)
|
||||
- [`7.2.16-zts-stretch`, `7.2-zts-stretch`, `7.2.16-zts`, `7.2-zts` (*7.2/stretch/zts/Dockerfile*)](https://github.com/docker-library/php/blob/873725e57ec2fc5f2642dc0023676597bcc4bea9/7.2/stretch/zts/Dockerfile)
|
||||
- [`7.2.16-cli-alpine3.9`, `7.2-cli-alpine3.9`, `7.2.16-alpine3.9`, `7.2-alpine3.9`, `7.2.16-cli-alpine`, `7.2-cli-alpine`, `7.2.16-alpine`, `7.2-alpine` (*7.2/alpine3.9/cli/Dockerfile*)](https://github.com/docker-library/php/blob/873725e57ec2fc5f2642dc0023676597bcc4bea9/7.2/alpine3.9/cli/Dockerfile)
|
||||
- [`7.2.16-fpm-alpine3.9`, `7.2-fpm-alpine3.9`, `7.2.16-fpm-alpine`, `7.2-fpm-alpine` (*7.2/alpine3.9/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/873725e57ec2fc5f2642dc0023676597bcc4bea9/7.2/alpine3.9/fpm/Dockerfile)
|
||||
- [`7.2.16-zts-alpine3.9`, `7.2-zts-alpine3.9`, `7.2.16-zts-alpine`, `7.2-zts-alpine` (*7.2/alpine3.9/zts/Dockerfile*)](https://github.com/docker-library/php/blob/873725e57ec2fc5f2642dc0023676597bcc4bea9/7.2/alpine3.9/zts/Dockerfile)
|
||||
- [`7.2.16-cli-alpine3.8`, `7.2-cli-alpine3.8`, `7.2.16-alpine3.8`, `7.2-alpine3.8` (*7.2/alpine3.8/cli/Dockerfile*)](https://github.com/docker-library/php/blob/873725e57ec2fc5f2642dc0023676597bcc4bea9/7.2/alpine3.8/cli/Dockerfile)
|
||||
- [`7.2.16-fpm-alpine3.8`, `7.2-fpm-alpine3.8` (*7.2/alpine3.8/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/873725e57ec2fc5f2642dc0023676597bcc4bea9/7.2/alpine3.8/fpm/Dockerfile)
|
||||
- [`7.2.16-zts-alpine3.8`, `7.2-zts-alpine3.8` (*7.2/alpine3.8/zts/Dockerfile*)](https://github.com/docker-library/php/blob/873725e57ec2fc5f2642dc0023676597bcc4bea9/7.2/alpine3.8/zts/Dockerfile)
|
||||
- [`7.1.27-cli-stretch`, `7.1-cli-stretch`, `7.1.27-stretch`, `7.1-stretch`, `7.1.27-cli`, `7.1-cli`, `7.1.27`, `7.1` (*7.1/stretch/cli/Dockerfile*)](https://github.com/docker-library/php/blob/a5cc6ff7d8f14330e55f8df673c69e2f35adf957/7.1/stretch/cli/Dockerfile)
|
||||
- [`7.1.27-apache-stretch`, `7.1-apache-stretch`, `7.1.27-apache`, `7.1-apache` (*7.1/stretch/apache/Dockerfile*)](https://github.com/docker-library/php/blob/a5cc6ff7d8f14330e55f8df673c69e2f35adf957/7.1/stretch/apache/Dockerfile)
|
||||
- [`7.1.27-fpm-stretch`, `7.1-fpm-stretch`, `7.1.27-fpm`, `7.1-fpm` (*7.1/stretch/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/a5cc6ff7d8f14330e55f8df673c69e2f35adf957/7.1/stretch/fpm/Dockerfile)
|
||||
- [`7.1.27-zts-stretch`, `7.1-zts-stretch`, `7.1.27-zts`, `7.1-zts` (*7.1/stretch/zts/Dockerfile*)](https://github.com/docker-library/php/blob/a5cc6ff7d8f14330e55f8df673c69e2f35adf957/7.1/stretch/zts/Dockerfile)
|
||||
- [`7.1.27-cli-jessie`, `7.1-cli-jessie`, `7.1.27-jessie`, `7.1-jessie` (*7.1/jessie/cli/Dockerfile*)](https://github.com/docker-library/php/blob/a5cc6ff7d8f14330e55f8df673c69e2f35adf957/7.1/jessie/cli/Dockerfile)
|
||||
- [`7.1.27-apache-jessie`, `7.1-apache-jessie` (*7.1/jessie/apache/Dockerfile*)](https://github.com/docker-library/php/blob/a5cc6ff7d8f14330e55f8df673c69e2f35adf957/7.1/jessie/apache/Dockerfile)
|
||||
- [`7.1.27-fpm-jessie`, `7.1-fpm-jessie` (*7.1/jessie/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/a5cc6ff7d8f14330e55f8df673c69e2f35adf957/7.1/jessie/fpm/Dockerfile)
|
||||
- [`7.1.27-zts-jessie`, `7.1-zts-jessie` (*7.1/jessie/zts/Dockerfile*)](https://github.com/docker-library/php/blob/a5cc6ff7d8f14330e55f8df673c69e2f35adf957/7.1/jessie/zts/Dockerfile)
|
||||
- [`7.1.27-cli-alpine3.9`, `7.1-cli-alpine3.9`, `7.1.27-alpine3.9`, `7.1-alpine3.9`, `7.1.27-cli-alpine`, `7.1-cli-alpine`, `7.1.27-alpine`, `7.1-alpine` (*7.1/alpine3.9/cli/Dockerfile*)](https://github.com/docker-library/php/blob/a5cc6ff7d8f14330e55f8df673c69e2f35adf957/7.1/alpine3.9/cli/Dockerfile)
|
||||
- [`7.1.27-fpm-alpine3.9`, `7.1-fpm-alpine3.9`, `7.1.27-fpm-alpine`, `7.1-fpm-alpine` (*7.1/alpine3.9/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/a5cc6ff7d8f14330e55f8df673c69e2f35adf957/7.1/alpine3.9/fpm/Dockerfile)
|
||||
- [`7.1.27-zts-alpine3.9`, `7.1-zts-alpine3.9`, `7.1.27-zts-alpine`, `7.1-zts-alpine` (*7.1/alpine3.9/zts/Dockerfile*)](https://github.com/docker-library/php/blob/a5cc6ff7d8f14330e55f8df673c69e2f35adf957/7.1/alpine3.9/zts/Dockerfile)
|
||||
- [`7.1.27-cli-alpine3.8`, `7.1-cli-alpine3.8`, `7.1.27-alpine3.8`, `7.1-alpine3.8` (*7.1/alpine3.8/cli/Dockerfile*)](https://github.com/docker-library/php/blob/a5cc6ff7d8f14330e55f8df673c69e2f35adf957/7.1/alpine3.8/cli/Dockerfile)
|
||||
- [`7.1.27-fpm-alpine3.8`, `7.1-fpm-alpine3.8` (*7.1/alpine3.8/fpm/Dockerfile*)](https://github.com/docker-library/php/blob/a5cc6ff7d8f14330e55f8df673c69e2f35adf957/7.1/alpine3.8/fpm/Dockerfile)
|
||||
- [`7.1.27-zts-alpine3.8`, `7.1-zts-alpine3.8` (*7.1/alpine3.8/zts/Dockerfile*)](https://github.com/docker-library/php/blob/a5cc6ff7d8f14330e55f8df673c69e2f35adf957/7.1/alpine3.8/zts/Dockerfile)
|
||||
|
||||
# Quick reference
|
||||
|
||||
|
|
|
|||
|
|
@ -16,26 +16,26 @@ WARNING:
|
|||
|
||||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
- [`2.6.1-stretch`, `2.6-stretch`, `2-stretch`, `stretch`, `2.6.1`, `2.6`, `2`, `latest` (*2.6/stretch/Dockerfile*)](https://github.com/docker-library/ruby/blob/3e2c9f3f3c34820dd38212f68c1d5f0300264711/2.6/stretch/Dockerfile)
|
||||
- [`2.6.1-slim-stretch`, `2.6-slim-stretch`, `2-slim-stretch`, `slim-stretch`, `2.6.1-slim`, `2.6-slim`, `2-slim`, `slim` (*2.6/stretch/slim/Dockerfile*)](https://github.com/docker-library/ruby/blob/73adf677cdb4b79ff4c98fb19aca11802e0d0ec9/2.6/stretch/slim/Dockerfile)
|
||||
- [`2.6.1-alpine3.9`, `2.6-alpine3.9`, `2-alpine3.9`, `alpine3.9`, `2.6.1-alpine`, `2.6-alpine`, `2-alpine`, `alpine` (*2.6/alpine3.9/Dockerfile*)](https://github.com/docker-library/ruby/blob/73adf677cdb4b79ff4c98fb19aca11802e0d0ec9/2.6/alpine3.9/Dockerfile)
|
||||
- [`2.6.1-alpine3.8`, `2.6-alpine3.8`, `2-alpine3.8`, `alpine3.8` (*2.6/alpine3.8/Dockerfile*)](https://github.com/docker-library/ruby/blob/73adf677cdb4b79ff4c98fb19aca11802e0d0ec9/2.6/alpine3.8/Dockerfile)
|
||||
- [`2.5.3-stretch`, `2.5-stretch`, `2.5.3`, `2.5` (*2.5/stretch/Dockerfile*)](https://github.com/docker-library/ruby/blob/84db4691c080384c8fbce44c722d46cedd6a384b/2.5/stretch/Dockerfile)
|
||||
- [`2.5.3-slim-stretch`, `2.5-slim-stretch`, `2.5.3-slim`, `2.5-slim` (*2.5/stretch/slim/Dockerfile*)](https://github.com/docker-library/ruby/blob/73adf677cdb4b79ff4c98fb19aca11802e0d0ec9/2.5/stretch/slim/Dockerfile)
|
||||
- [`2.5.3-alpine3.9`, `2.5-alpine3.9`, `2.5.3-alpine`, `2.5-alpine` (*2.5/alpine3.9/Dockerfile*)](https://github.com/docker-library/ruby/blob/73adf677cdb4b79ff4c98fb19aca11802e0d0ec9/2.5/alpine3.9/Dockerfile)
|
||||
- [`2.5.3-alpine3.8`, `2.5-alpine3.8` (*2.5/alpine3.8/Dockerfile*)](https://github.com/docker-library/ruby/blob/73adf677cdb4b79ff4c98fb19aca11802e0d0ec9/2.5/alpine3.8/Dockerfile)
|
||||
- [`2.4.5-stretch`, `2.4-stretch`, `2.4.5`, `2.4` (*2.4/stretch/Dockerfile*)](https://github.com/docker-library/ruby/blob/84db4691c080384c8fbce44c722d46cedd6a384b/2.4/stretch/Dockerfile)
|
||||
- [`2.4.5-slim-stretch`, `2.4-slim-stretch`, `2.4.5-slim`, `2.4-slim` (*2.4/stretch/slim/Dockerfile*)](https://github.com/docker-library/ruby/blob/73adf677cdb4b79ff4c98fb19aca11802e0d0ec9/2.4/stretch/slim/Dockerfile)
|
||||
- [`2.4.5-jessie`, `2.4-jessie` (*2.4/jessie/Dockerfile*)](https://github.com/docker-library/ruby/blob/84db4691c080384c8fbce44c722d46cedd6a384b/2.4/jessie/Dockerfile)
|
||||
- [`2.4.5-slim-jessie`, `2.4-slim-jessie` (*2.4/jessie/slim/Dockerfile*)](https://github.com/docker-library/ruby/blob/73adf677cdb4b79ff4c98fb19aca11802e0d0ec9/2.4/jessie/slim/Dockerfile)
|
||||
- [`2.4.5-alpine3.9`, `2.4-alpine3.9`, `2.4.5-alpine`, `2.4-alpine` (*2.4/alpine3.9/Dockerfile*)](https://github.com/docker-library/ruby/blob/73adf677cdb4b79ff4c98fb19aca11802e0d0ec9/2.4/alpine3.9/Dockerfile)
|
||||
- [`2.4.5-alpine3.8`, `2.4-alpine3.8` (*2.4/alpine3.8/Dockerfile*)](https://github.com/docker-library/ruby/blob/73adf677cdb4b79ff4c98fb19aca11802e0d0ec9/2.4/alpine3.8/Dockerfile)
|
||||
- [`2.3.8-stretch`, `2.3-stretch`, `2.3.8`, `2.3` (*2.3/stretch/Dockerfile*)](https://github.com/docker-library/ruby/blob/84db4691c080384c8fbce44c722d46cedd6a384b/2.3/stretch/Dockerfile)
|
||||
- [`2.3.8-slim-stretch`, `2.3-slim-stretch`, `2.3.8-slim`, `2.3-slim` (*2.3/stretch/slim/Dockerfile*)](https://github.com/docker-library/ruby/blob/73adf677cdb4b79ff4c98fb19aca11802e0d0ec9/2.3/stretch/slim/Dockerfile)
|
||||
- [`2.3.8-jessie`, `2.3-jessie` (*2.3/jessie/Dockerfile*)](https://github.com/docker-library/ruby/blob/84db4691c080384c8fbce44c722d46cedd6a384b/2.3/jessie/Dockerfile)
|
||||
- [`2.3.8-slim-jessie`, `2.3-slim-jessie` (*2.3/jessie/slim/Dockerfile*)](https://github.com/docker-library/ruby/blob/73adf677cdb4b79ff4c98fb19aca11802e0d0ec9/2.3/jessie/slim/Dockerfile)
|
||||
- [`2.3.8-alpine3.8`, `2.3-alpine3.8`, `2.3.8-alpine`, `2.3-alpine` (*2.3/alpine3.8/Dockerfile*)](https://github.com/docker-library/ruby/blob/73adf677cdb4b79ff4c98fb19aca11802e0d0ec9/2.3/alpine3.8/Dockerfile)
|
||||
- [`2.3.8-alpine3.7`, `2.3-alpine3.7` (*2.3/alpine3.7/Dockerfile*)](https://github.com/docker-library/ruby/blob/73adf677cdb4b79ff4c98fb19aca11802e0d0ec9/2.3/alpine3.7/Dockerfile)
|
||||
- [`2.6.1-stretch`, `2.6-stretch`, `2-stretch`, `stretch`, `2.6.1`, `2.6`, `2`, `latest` (*2.6/stretch/Dockerfile*)](https://github.com/docker-library/ruby/blob/96fc06fb331a20ba823ecc11563a99d1eb94203f/2.6/stretch/Dockerfile)
|
||||
- [`2.6.1-slim-stretch`, `2.6-slim-stretch`, `2-slim-stretch`, `slim-stretch`, `2.6.1-slim`, `2.6-slim`, `2-slim`, `slim` (*2.6/stretch/slim/Dockerfile*)](https://github.com/docker-library/ruby/blob/96fc06fb331a20ba823ecc11563a99d1eb94203f/2.6/stretch/slim/Dockerfile)
|
||||
- [`2.6.1-alpine3.9`, `2.6-alpine3.9`, `2-alpine3.9`, `alpine3.9`, `2.6.1-alpine`, `2.6-alpine`, `2-alpine`, `alpine` (*2.6/alpine3.9/Dockerfile*)](https://github.com/docker-library/ruby/blob/96fc06fb331a20ba823ecc11563a99d1eb94203f/2.6/alpine3.9/Dockerfile)
|
||||
- [`2.6.1-alpine3.8`, `2.6-alpine3.8`, `2-alpine3.8`, `alpine3.8` (*2.6/alpine3.8/Dockerfile*)](https://github.com/docker-library/ruby/blob/96fc06fb331a20ba823ecc11563a99d1eb94203f/2.6/alpine3.8/Dockerfile)
|
||||
- [`2.5.3-stretch`, `2.5-stretch`, `2.5.3`, `2.5` (*2.5/stretch/Dockerfile*)](https://github.com/docker-library/ruby/blob/31f66490fdb837ddcc5896e3275f2188f2b7b6dd/2.5/stretch/Dockerfile)
|
||||
- [`2.5.3-slim-stretch`, `2.5-slim-stretch`, `2.5.3-slim`, `2.5-slim` (*2.5/stretch/slim/Dockerfile*)](https://github.com/docker-library/ruby/blob/31f66490fdb837ddcc5896e3275f2188f2b7b6dd/2.5/stretch/slim/Dockerfile)
|
||||
- [`2.5.3-alpine3.9`, `2.5-alpine3.9`, `2.5.3-alpine`, `2.5-alpine` (*2.5/alpine3.9/Dockerfile*)](https://github.com/docker-library/ruby/blob/31f66490fdb837ddcc5896e3275f2188f2b7b6dd/2.5/alpine3.9/Dockerfile)
|
||||
- [`2.5.3-alpine3.8`, `2.5-alpine3.8` (*2.5/alpine3.8/Dockerfile*)](https://github.com/docker-library/ruby/blob/31f66490fdb837ddcc5896e3275f2188f2b7b6dd/2.5/alpine3.8/Dockerfile)
|
||||
- [`2.4.5-stretch`, `2.4-stretch`, `2.4.5`, `2.4` (*2.4/stretch/Dockerfile*)](https://github.com/docker-library/ruby/blob/31f66490fdb837ddcc5896e3275f2188f2b7b6dd/2.4/stretch/Dockerfile)
|
||||
- [`2.4.5-slim-stretch`, `2.4-slim-stretch`, `2.4.5-slim`, `2.4-slim` (*2.4/stretch/slim/Dockerfile*)](https://github.com/docker-library/ruby/blob/31f66490fdb837ddcc5896e3275f2188f2b7b6dd/2.4/stretch/slim/Dockerfile)
|
||||
- [`2.4.5-jessie`, `2.4-jessie` (*2.4/jessie/Dockerfile*)](https://github.com/docker-library/ruby/blob/31f66490fdb837ddcc5896e3275f2188f2b7b6dd/2.4/jessie/Dockerfile)
|
||||
- [`2.4.5-slim-jessie`, `2.4-slim-jessie` (*2.4/jessie/slim/Dockerfile*)](https://github.com/docker-library/ruby/blob/31f66490fdb837ddcc5896e3275f2188f2b7b6dd/2.4/jessie/slim/Dockerfile)
|
||||
- [`2.4.5-alpine3.9`, `2.4-alpine3.9`, `2.4.5-alpine`, `2.4-alpine` (*2.4/alpine3.9/Dockerfile*)](https://github.com/docker-library/ruby/blob/31f66490fdb837ddcc5896e3275f2188f2b7b6dd/2.4/alpine3.9/Dockerfile)
|
||||
- [`2.4.5-alpine3.8`, `2.4-alpine3.8` (*2.4/alpine3.8/Dockerfile*)](https://github.com/docker-library/ruby/blob/31f66490fdb837ddcc5896e3275f2188f2b7b6dd/2.4/alpine3.8/Dockerfile)
|
||||
- [`2.3.8-stretch`, `2.3-stretch`, `2.3.8`, `2.3` (*2.3/stretch/Dockerfile*)](https://github.com/docker-library/ruby/blob/31f66490fdb837ddcc5896e3275f2188f2b7b6dd/2.3/stretch/Dockerfile)
|
||||
- [`2.3.8-slim-stretch`, `2.3-slim-stretch`, `2.3.8-slim`, `2.3-slim` (*2.3/stretch/slim/Dockerfile*)](https://github.com/docker-library/ruby/blob/31f66490fdb837ddcc5896e3275f2188f2b7b6dd/2.3/stretch/slim/Dockerfile)
|
||||
- [`2.3.8-jessie`, `2.3-jessie` (*2.3/jessie/Dockerfile*)](https://github.com/docker-library/ruby/blob/31f66490fdb837ddcc5896e3275f2188f2b7b6dd/2.3/jessie/Dockerfile)
|
||||
- [`2.3.8-slim-jessie`, `2.3-slim-jessie` (*2.3/jessie/slim/Dockerfile*)](https://github.com/docker-library/ruby/blob/31f66490fdb837ddcc5896e3275f2188f2b7b6dd/2.3/jessie/slim/Dockerfile)
|
||||
- [`2.3.8-alpine3.8`, `2.3-alpine3.8`, `2.3.8-alpine`, `2.3-alpine` (*2.3/alpine3.8/Dockerfile*)](https://github.com/docker-library/ruby/blob/31f66490fdb837ddcc5896e3275f2188f2b7b6dd/2.3/alpine3.8/Dockerfile)
|
||||
- [`2.3.8-alpine3.7`, `2.3-alpine3.7` (*2.3/alpine3.7/Dockerfile*)](https://github.com/docker-library/ruby/blob/31f66490fdb837ddcc5896e3275f2188f2b7b6dd/2.3/alpine3.7/Dockerfile)
|
||||
|
||||
# Quick reference
|
||||
|
||||
|
|
|
|||
|
|
@ -16,8 +16,8 @@ WARNING:
|
|||
|
||||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
- [`latest`, `8.1.1` (*8.1.1/stretch/Dockerfile*)](https://github.com/SWI-Prolog/docker-swipl/blob/dc49d3fa26703cc8ebaae999a680a62984ee385d/8.1.1/stretch/Dockerfile)
|
||||
- [`stable`, `8.0.0` (*8.0.0/stretch/Dockerfile*)](https://github.com/SWI-Prolog/docker-swipl/blob/dc49d3fa26703cc8ebaae999a680a62984ee385d/8.0.0/stretch/Dockerfile)
|
||||
- [`latest`, `8.1.2` (*8.1.2/stretch/Dockerfile*)](https://github.com/SWI-Prolog/docker-swipl/blob/39dce967080da421e35ff48ce8a06c3680176fe1/8.1.2/stretch/Dockerfile)
|
||||
- [`stable`, `8.0.0` (*8.0.0/stretch/Dockerfile*)](https://github.com/SWI-Prolog/docker-swipl/blob/39dce967080da421e35ff48ce8a06c3680176fe1/8.0.0/stretch/Dockerfile)
|
||||
|
||||
# Quick reference
|
||||
|
||||
|
|
|
|||
|
|
@ -16,9 +16,9 @@ WARNING:
|
|||
|
||||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
- [`1.7.3-apache`, `1.7-apache`, `1-apache`, `apache`, `1.7.3`, `1.7`, `1`, `latest` (*apache/Dockerfile*)](https://github.com/YOURLS/docker-yourls/blob/974a5688421ab0eae1dbcbf832cb140a1a6adb0b/apache/Dockerfile)
|
||||
- [`1.7.3-fpm`, `1.7-fpm`, `1-fpm`, `fpm` (*fpm/Dockerfile*)](https://github.com/YOURLS/docker-yourls/blob/974a5688421ab0eae1dbcbf832cb140a1a6adb0b/fpm/Dockerfile)
|
||||
- [`1.7.3-fpm-alpine`, `1.7-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine` (*fpm-alpine/Dockerfile*)](https://github.com/YOURLS/docker-yourls/blob/974a5688421ab0eae1dbcbf832cb140a1a6adb0b/fpm-alpine/Dockerfile)
|
||||
- [`1.7.3-apache`, `1.7-apache`, `1-apache`, `apache`, `1.7.3`, `1.7`, `1`, `latest` (*apache/Dockerfile*)](https://github.com/YOURLS/docker-yourls/blob/71832c631cd4cb174070d54d3136aa2e413edee8/apache/Dockerfile)
|
||||
- [`1.7.3-fpm`, `1.7-fpm`, `1-fpm`, `fpm` (*fpm/Dockerfile*)](https://github.com/YOURLS/docker-yourls/blob/71832c631cd4cb174070d54d3136aa2e413edee8/fpm/Dockerfile)
|
||||
- [`1.7.3-fpm-alpine`, `1.7-fpm-alpine`, `1-fpm-alpine`, `fpm-alpine` (*fpm-alpine/Dockerfile*)](https://github.com/YOURLS/docker-yourls/blob/71832c631cd4cb174070d54d3136aa2e413edee8/fpm-alpine/Dockerfile)
|
||||
|
||||
# Quick reference
|
||||
|
||||
|
|
@ -61,6 +61,8 @@ YOURLS is a set of PHP scripts that will allow you to run Your Own URL Shortener
|
|||
```console
|
||||
$ docker run --name some-yourls --link some-mysql:mysql \
|
||||
-e YOURLS_SITE="https://example.com" \
|
||||
-e YOURLS_USER="example_username" \
|
||||
-e YOURLS_PASS="example_password" \
|
||||
-d yourls
|
||||
```
|
||||
|
||||
|
|
@ -73,6 +75,8 @@ The following environment variables are also honored for configuring your YOURLS
|
|||
- `-e YOURLS_TABLE_PREFIX=...` (defaults to "", only set this when you need to override the default table prefix in wp-config.php)
|
||||
- `-e YOURLS_COOKIEKEY=...` (default to unique random SHA1s)
|
||||
- `-e YOURLS_SITE=...` (yourls instance url)
|
||||
- `-e YOURLS_USER=...` (yourls instance user name)
|
||||
- `-e YOURLS_PASS=...` (yourls instance user password)
|
||||
|
||||
If the `YOURLS_DB_NAME` specified does not already exist on the given MySQL server, it will be created automatically upon startup of the `yourls` container, provided that the `YOURLS_DB_USER` specified has the necessary permissions to create it.
|
||||
|
||||
|
|
@ -108,6 +112,8 @@ services:
|
|||
environment:
|
||||
YOURLS_DB_PASS: example
|
||||
YOURLS_SITE: https://example.com
|
||||
YOURLS_USER: example_username
|
||||
YOURLS_PASS: example_password
|
||||
|
||||
mysql:
|
||||
image: mysql:5.7
|
||||
|
|
@ -116,7 +122,7 @@ services:
|
|||
MYSQL_ROOT_PASSWORD: example
|
||||
```
|
||||
|
||||
[](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/56798ba4051d863557e7e6256c452a9265745675/yourls/stack.yml)
|
||||
[](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/be1a84b44ec3c028aa0ac5a9c8e413e43dfe05e4/yourls/stack.yml)
|
||||
|
||||
Run `docker stack deploy -c stack.yml yourls` (or `docker-compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:8080`, `http://localhost:8080`, or `http://host-ip:8080` (as appropriate).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue