Ver Fonte

Run update.sh

Docker Library Bot há 5 anos atrás
pai
commit
b68cf2c58a
5 ficheiros alterados com 21 adições e 19 exclusões
  1. 1 1
      arangodb/README.md
  2. 12 12
      bonita/README.md
  3. 2 2
      composer/README.md
  4. 4 2
      neo4j/README.md
  5. 2 2
      traefik/README.md

+ 1 - 1
arangodb/README.md

@@ -21,7 +21,7 @@ WARNING:
 -	[`3.3`, `3.3.25`](https://github.com/arangodb/arangodb-docker/blob/27ab30feeccb87295f838ed6e0d0d9a7b67908bc/stretch/3.3.25/Dockerfile)
 -	[`3.4`, `3.4.9`](https://github.com/arangodb/arangodb-docker/blob/4aa774dd973b77f958fbe7a90285ca2452ca22aa/alpine/3.4.9/Dockerfile)
 -	[`3.5`, `3.5.4`](https://github.com/arangodb/arangodb-docker/blob/8fa0c5d9b74ca36cf3e7ed6e8df8954c87cf04a6/alpine/3.5.4/Dockerfile)
--	[`3.6`, `3.6.1`, `latest`](https://github.com/arangodb/arangodb-docker/blob/3a3b5e8f4314686cb531720158e27bf6abe0c11b/alpine/3.6.1/Dockerfile)
+-	[`3.6`, `3.6.2`, `latest`](https://github.com/arangodb/arangodb-docker/blob/3221992d873334bfb6a187a5a7a07112b06f6899/alpine/3.6.2/Dockerfile)
 
 # Quick reference
 

+ 12 - 12
bonita/README.md

@@ -17,7 +17,7 @@ WARNING:
 # Supported tags and respective `Dockerfile` links
 
 -	[`7.9.4`, `7.9`](https://github.com/Bonitasoft-Community/docker_bonita/blob/4ce826e88b107ab685c4df72af1960dda68890f1/7.9/Dockerfile)
--	[`7.10.1`, `7.10`, `latest`](https://github.com/Bonitasoft-Community/docker_bonita/blob/e03cc6efc2e54edf11f36805502258df3d05e5a7/7.10/Dockerfile)
+-	[`7.10.3`, `7.10`, `latest`](https://github.com/Bonitasoft-Community/docker_bonita/blob/b58b05d989055ca3521fc92211d10ff640b4028f/7.10/Dockerfile)
 
 # Quick reference
 
@@ -265,9 +265,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.47.0.zip
+		wget https://release.ow2.org/bonita/bonita-migration-distrib-2.49.0.zip
 		wget https://download.forge.ow2.org/bonita/BonitaBPMCommunity-7.2.4-Tomcat-7.0.67.zip
-		unzip bonita-migration-distrib-2.47.0.zip
+		unzip bonita-migration-distrib-2.49.0.zip
 		unzip BonitaBPMCommunity-7.2.4-Tomcat-7.0.67.zip
 		```
 
@@ -282,14 +282,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.47.0.zip
-		unzip bonita-migration-distrib-2.47.0.zip
+		wget https://release.ow2.org/bonita/bonita-migration-distrib-2.49.0.zip
+		unzip bonita-migration-distrib-2.49.0.zip
 		```
 
 -	Configure the migration tool
 
 	```console
-	$ cd bonita-migration-distrib-2.47.0
+	$ cd bonita-migration-distrib-2.49.0
 	```
 
 	edit the migration tool config to point towards the copy of bonita home and db
@@ -326,17 +326,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.10.1_postgres --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:7.10.1
+	$ docker run --name=bonita_7.10.3_postgres --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:7.10.3
 	```
 
 -	Reapply specific configuration if needed, for example with a version >= 7.3.0 :
 
 	```console
-	$ docker exec -ti bonita_7.10.1_postgres /bin/bash
+	$ docker exec -ti bonita_7.10.3_postgres /bin/bash
 	```
 
 	```console
-	$ cd /opt/bonita/BonitaCommunity-7.10.1/setup
+	$ cd /opt/bonita/BonitaCommunity-7.10.3/setup
 	$ ./setup.sh pull
 	$ TENANT_LOGIN=tech_user
 	$ TENANT_PASSWORD=secret
@@ -356,7 +356,7 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat
 	```
 
 	```console
-	$ docker restart bonita_7.10.1_postgres
+	$ docker restart bonita_7.10.3_postgres
 	```
 
 -	Specific consideration regarding migration to Java 11 in Bonita 7.9
@@ -480,7 +480,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.10.1/server/conf/logging.properties' >> custom_bonita/bonita.sh
+$ echo 'sed -i "s/^org.bonitasoft.level = WARNING$/org.bonitasoft.level = FINEST/" /opt/bonita/BonitaCommunity-7.10.3/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
@@ -498,7 +498,7 @@ Note: There are several ways to check the `bonita` logs. Till Bonita 7.8, one of
 
 ```console
 $ docker exec -ti bonita_custom /bin/bash
-tail -f /opt/bonita/BonitaCommunity-7.10.1/server/logs/bonita.`date +%Y-%m-%d`.log
+tail -f /opt/bonita/BonitaCommunity-7.10.3/server/logs/bonita.`date +%Y-%m-%d`.log
 ```
 
 Since Bonita 7.9 bonita logs are redirected towards standard output and directly accessible using

+ 2 - 2
composer/README.md

@@ -16,8 +16,8 @@ WARNING:
 
 # Supported tags and respective `Dockerfile` links
 
--	[`1.9.3`, `1.9`, `1`, `latest`](https://github.com/composer/docker/blob/21089638c5aa440bd6c18437f1fbaae067b8e803/1.9/Dockerfile)
--	[`1.8.6`, `1.8`](https://github.com/composer/docker/blob/8595a2016b538e0f6945b8c2113ec85dcf04868c/1.8/Dockerfile)
+-	[`1.10.0`, `1.10`, `1`, `latest`](https://github.com/composer/docker/blob/96bfff819c54dd14297b66b519706110f64e0032/1.10/Dockerfile)
+-	[`1.9.3`, `1.9`](https://github.com/composer/docker/blob/96bfff819c54dd14297b66b519706110f64e0032/1.9/Dockerfile)
 
 # Quick reference
 

+ 4 - 2
neo4j/README.md

@@ -20,8 +20,10 @@ WARNING:
 -	[`4.0.1-enterprise`, `4.0-enterprise`, `enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/13c288e9c36ee22e682b459fb218c9239e2c1083/4.0.1/enterprise/Dockerfile)
 -	[`4.0.0`](https://github.com/neo4j/docker-neo4j-publish/blob/685fb314ef8e451217b6806028b9ac4dbf44d3fc/4.0.0/community/Dockerfile)
 -	[`4.0.0-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/685fb314ef8e451217b6806028b9ac4dbf44d3fc/4.0.0/enterprise/Dockerfile)
--	[`3.5.15`, `3.5`](https://github.com/neo4j/docker-neo4j-publish/blob/a2b48dfb25b76250bced5e2d0c064615e3085379/3.5.15/community/Dockerfile)
--	[`3.5.15-enterprise`, `3.5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a2b48dfb25b76250bced5e2d0c064615e3085379/3.5.15/enterprise/Dockerfile)
+-	[`3.5.16`, `3.5`](https://github.com/neo4j/docker-neo4j-publish/blob/db34a05ac7abf4b2818222294ac9dc93b13d54a2/3.5.16/community/Dockerfile)
+-	[`3.5.16-enterprise`, `3.5-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/db34a05ac7abf4b2818222294ac9dc93b13d54a2/3.5.16/enterprise/Dockerfile)
+-	[`3.5.15`](https://github.com/neo4j/docker-neo4j-publish/blob/a2b48dfb25b76250bced5e2d0c064615e3085379/3.5.15/community/Dockerfile)
+-	[`3.5.15-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/a2b48dfb25b76250bced5e2d0c064615e3085379/3.5.15/enterprise/Dockerfile)
 -	[`3.5.14`](https://github.com/neo4j/docker-neo4j-publish/blob/574e0a1d5e5eb27a633148198c028d9a28899a9a/3.5.14/community/Dockerfile)
 -	[`3.5.14-enterprise`](https://github.com/neo4j/docker-neo4j-publish/blob/574e0a1d5e5eb27a633148198c028d9a28899a9a/3.5.14/enterprise/Dockerfile)
 -	[`3.5.13`](https://github.com/neo4j/docker-neo4j-publish/blob/846ee1e9ad2744182a52bc21eb6204858c1a8a48/3.5.13/community/Dockerfile)

+ 2 - 2
traefik/README.md

@@ -16,8 +16,8 @@ WARNING:
 
 # Supported tags and respective `Dockerfile` links
 
--	[`v2.2.0-rc1-windowsservercore-1809`, `2.2.0-rc1-windowsservercore-1809`, `v2.2-windowsservercore-1809`, `2.2-windowsservercore-1809`, `chevrotin-windowsservercore-1809`](https://github.com/containous/traefik-library-image/blob/92cfab77bf0b968b37b567d1816a57df74f7e69a/windows/1809/Dockerfile)
--	[`v2.2.0-rc1`, `2.2.0-rc1`, `v2.2`, `2.2`, `chevrotin`](https://github.com/containous/traefik-library-image/blob/92cfab77bf0b968b37b567d1816a57df74f7e69a/alpine/Dockerfile)
+-	[`v2.2.0-rc2-windowsservercore-1809`, `2.2.0-rc2-windowsservercore-1809`, `v2.2-windowsservercore-1809`, `2.2-windowsservercore-1809`, `chevrotin-windowsservercore-1809`](https://github.com/containous/traefik-library-image/blob/bb912443c1fab1913242aa9801fce676f73c0064/windows/1809/Dockerfile)
+-	[`v2.2.0-rc2`, `2.2.0-rc2`, `v2.2`, `2.2`, `chevrotin`](https://github.com/containous/traefik-library-image/blob/bb912443c1fab1913242aa9801fce676f73c0064/alpine/Dockerfile)
 -	[`v2.1.6-windowsservercore-1809`, `2.1.6-windowsservercore-1809`, `v2.1-windowsservercore-1809`, `2.1-windowsservercore-1809`, `cantal-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/containous/traefik-library-image/blob/a1cd15373faf833121fbc5d6418d4f30c7738d88/windows/1809/Dockerfile)
 -	[`v2.1.6`, `2.1.6`, `v2.1`, `2.1`, `cantal`, `latest`](https://github.com/containous/traefik-library-image/blob/a1cd15373faf833121fbc5d6418d4f30c7738d88/alpine/Dockerfile)
 -	[`v1.7.21-windowsservercore-1809`, `1.7.21-windowsservercore-1809`, `v1.7-windowsservercore-1809`, `1.7-windowsservercore-1809`, `maroilles-windowsservercore-1809`](https://github.com/containous/traefik-library-image/blob/0b074fb72cea580612c99f057e5c1b218183bad3/windows/1809/Dockerfile)